| 101 | static const simplecpp::TokenString HAS_INCLUDE("__has_include"); |
| 102 | |
| 103 | template<class T> static std::string toString(T t) |
| 104 | { |
| 105 | // NOLINTNEXTLINE(misc-const-correctness) - false positive |
| 106 | std::ostringstream ostr; |
| 107 | ostr << t; |
| 108 | return ostr.str(); |
| 109 | } |
| 110 | |
| 111 | #ifdef SIMPLECPP_DEBUG_MACRO_EXPANSION |
| 112 | static std::string locstring(const simplecpp::Location &loc) |
no test coverage detected