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 {
const std::set<std::string> magics = make_container< std::set<std::string> > ()
"%any%"
"%bool%"
"%char%"
"%comp%"
"%num%"
"%op%"
"%cop%"
"%or%"
"%oror%"
"%str%"
"%type%"
"%name%"
"%varid%";
<< "%any%"
<< "%bool%"
<< "%char%"
<< "%comp%"
<< "%num%"
<< "%op%"
<< "%cop%"
<< "%or%"
<< "%oror%"
<< "%str%"
<< "%type%"
<< "%name%"
<< "%varid%";
}
void CheckInternal::checkMissingPercentCharacter()