\brief Similiar to \ref CloseScope only this time a ';' is inserted after the brace.
| 173 | |
| 174 | /// \brief Similiar to \ref CloseScope only this time a ';' is inserted after the brace. |
| 175 | void CloseScopeWithSemi(const NoNewLineBefore newLineBefore = NoNewLineBefore::No) |
| 176 | { |
| 177 | CloseScope(newLineBefore); |
| 178 | Append(';'); |
| 179 | } |
| 180 | |
| 181 | /// \brief Append a comma if needed. |
| 182 | void AppendComma(OnceFalse& needsComma) |
nothing calls this directly
no outgoing calls
no test coverage detected