* check if a line is empty * * @return whether line is empty */
| 2518 | * @return whether line is empty |
| 2519 | */ |
| 2520 | bool ASFormatter::isEmptyLine(const string &line) const |
| 2521 | { |
| 2522 | return line.find_first_not_of(" \t") == string::npos; |
| 2523 | } |
| 2524 | |
| 2525 | /** |
| 2526 | * Check if the following text is "C" as in extern "C". |
nothing calls this directly
no outgoing calls
no test coverage detected