Fix compilation issues with MSVC 2010
(mostly by eliminating use of range-based for loops and std::tie)
This commit is contained in:
parent
0967748fbc
commit
32084e889d
8 changed files with 28 additions and 28 deletions
|
|
@ -206,7 +206,7 @@ struct TSourceLoc {
|
|||
{
|
||||
if (name != nullptr)
|
||||
return quoteStringName ? ("\"" + std::string(name) + "\"") : name;
|
||||
return std::to_string(string);
|
||||
return std::to_string((long long)string);
|
||||
}
|
||||
const char* name; // descriptive name for this string
|
||||
int string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue