Merge pull request #175 from rdb/master

Fix compilation issues with MSVC 2010
This commit is contained in:
John Kessenich 2016-02-27 21:29:14 -07:00
commit 52d08596ec
8 changed files with 28 additions and 28 deletions

View file

@ -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;