Fixed garbage code in checkinternal.cpp

This commit is contained in:
PKEuS 2015-06-18 17:13:46 +02:00
parent baaf3213e4
commit 189a652c2e
1 changed files with 13 additions and 13 deletions

View File

@ -146,19 +146,19 @@ void CheckInternal::checkTokenSimpleMatchPatterns()
namespace { namespace {
const std::set<std::string> magics = make_container< std::set<std::string> > () const std::set<std::string> magics = make_container< std::set<std::string> > ()
"%any%" << "%any%"
"%bool%" << "%bool%"
"%char%" << "%char%"
"%comp%" << "%comp%"
"%num%" << "%num%"
"%op%" << "%op%"
"%cop%" << "%cop%"
"%or%" << "%or%"
"%oror%" << "%oror%"
"%str%" << "%str%"
"%type%" << "%type%"
"%name%" << "%name%"
"%varid%"; << "%varid%";
} }
void CheckInternal::checkMissingPercentCharacter() void CheckInternal::checkMissingPercentCharacter()