| 3171 | } |
| 3172 | |
| 3173 | bool TextDocument::removeCommand( const std::string& command ) { |
| 3174 | return mCommands.erase( command ) > 0 || mRefCommands.erase( command ) > 0; |
| 3175 | } |
| 3176 | |
| 3177 | static constexpr auto MAX_CAPTURES = 12; |
| 3178 |
no test coverage detected