| 275 | #define tokenize(...) tokenize_(__FILE__, __LINE__, __VA_ARGS__) |
| 276 | template<size_t size> |
| 277 | std::string tokenize_(const char* file, int line, const char (&code)[size], const TokenizeOptions& options = make_default_obj()) { |
| 278 | return tokenize_(file, line, code, settings, options.cpp); |
| 279 | } |
| 280 | |
| 281 | template<size_t size> |
| 282 | std::string tokenize_(const char* file, int line, const char (&code)[size], const Settings& settings1, bool cpp = true) { |
nothing calls this directly
no test coverage detected