Get the current column if we can, else return -1
| 2093 | |
| 2094 | // Get the current column if we can, else return -1 |
| 2095 | int StringParser::GetColumn() const noexcept |
| 2096 | { |
| 2097 | return (readPointer < 0) ? -1 : readPointer + (int)commandIndent; |
| 2098 | } |
| 2099 | |
| 2100 | // End |
no outgoing calls
no test coverage detected