| 110 | |
| 111 | #ifdef SIMPLECPP_DEBUG_MACRO_EXPANSION |
| 112 | static std::string locstring(const simplecpp::Location &loc) |
| 113 | { |
| 114 | std::ostringstream ostr; |
| 115 | ostr << '[' << loc.file() << ':' << loc.line << ':' << loc.col << ']'; |
| 116 | return ostr.str(); |
| 117 | } |
| 118 | #endif |
| 119 | |
| 120 | static long long stringToLL(const std::string &s) |