| 1014 | } |
| 1015 | |
| 1016 | static bool isFloatSuffix(const simplecpp::Token *tok) |
| 1017 | { |
| 1018 | if (!tok || tok->str().size() != 1U) |
| 1019 | return false; |
| 1020 | const char c = std::tolower(tok->str()[0]); |
| 1021 | return c == 'f' || c == 'l'; |
| 1022 | } |
| 1023 | |
| 1024 | static const std::string AND("and"); |
| 1025 | static const std::string BITAND("bitand"); |
no test coverage detected