* Check if a pointer symbol (->) follows on the currentLine. */
| 6266 | * Check if a pointer symbol (->) follows on the currentLine. |
| 6267 | */ |
| 6268 | bool ASFormatter::pointerSymbolFollows() const |
| 6269 | { |
| 6270 | size_t peekNum = currentLine.find_first_not_of(" \t", charNum + 1); |
| 6271 | if (peekNum == string::npos || currentLine.compare(peekNum, 2, "->") != 0) |
| 6272 | return false; |
| 6273 | return true; |
| 6274 | } |
| 6275 | |
| 6276 | /** |
| 6277 | * Compute the input checksum. |
nothing calls this directly
no outgoing calls
no test coverage detected