| 513 | { |
| 514 | |
| 515 | bool IsPermutationPragma( const std::string& pragma ) |
| 516 | { |
| 517 | const char* prefix = "permutation"; |
| 518 | return strncmp( pragma.c_str(), prefix, strlen( prefix ) ) == 0 && !isalnum( pragma[strlen( prefix )] ); |
| 519 | } |
| 520 | |
| 521 | bool GetPermutationInfo( const std::string& pragma, Permutation& permutation ) |
| 522 | { |
no outgoing calls
no test coverage detected