| 8115 | return TestCaseInfo::None; |
| 8116 | } |
| 8117 | inline bool isReservedTag( std::string const& tag ) { |
| 8118 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( tag[0] ); |
| 8119 | } |
| 8120 | inline void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 8121 | if( isReservedTag( tag ) ) { |
| 8122 | std::ostringstream ss; |
no test coverage detected