| 28 | }; |
| 29 | |
| 30 | static uint32_t parse_modifier(std::string mod_name) |
| 31 | { |
| 32 | auto it = mod_name_to_mod.find(to_lower(mod_name)); |
| 33 | if (it != mod_name_to_mod.end()) |
| 34 | { |
| 35 | return it->second; |
| 36 | } |
| 37 | |
| 38 | return 0; |
| 39 | } |
| 40 | |
| 41 | std::vector<std::string> tokenize_at(std::string str, char token) |
| 42 | { |
no test coverage detected