| 265 | /** generates a token list from the given buffer */ |
| 266 | template<size_t size> |
| 267 | TokenList(const char (&data)[size], std::vector<std::string> &filenames, const std::string &filename=std::string(), OutputList *outputList = nullptr) |
| 268 | : TokenList(reinterpret_cast<const unsigned char*>(data), size-1, filenames, filename, outputList, 0) |
| 269 | {} |
| 270 | /** generates a token list from the given buffer */ |
| 271 | template<size_t size> |
| 272 | TokenList(const unsigned char (&data)[size], std::vector<std::string> &filenames, const std::string &filename=std::string(), OutputList *outputList = nullptr) |
no test coverage detected