| 110 | } |
| 111 | |
| 112 | bool isOperatorOrArrowOperator(QStringView str, int pos) |
| 113 | { |
| 114 | return isOperator(str, pos) || isArrowOperator(str, pos); |
| 115 | } |
| 116 | |
| 117 | /// Skips literals enclosed in single or double quotes. |
| 118 | /// No need to support raw string literals, because they cannot appear within a macro parameter list; |
no test coverage detected