| 43 | #include <simplecpp.h> |
| 44 | |
| 45 | static bool sameline(const simplecpp::Token *tok1, const simplecpp::Token *tok2) |
| 46 | { |
| 47 | return tok1 && tok2 && tok1->location.sameline(tok2->location); |
| 48 | } |
| 49 | |
| 50 | Directive::Directive(const simplecpp::TokenList &tokens, const simplecpp::Location & _loc, std::string _str) : |
| 51 | file(tokens.file(_loc)), |
no outgoing calls
no test coverage detected