Formatting style

feature/pre-code-move
kaetemi 5 years ago committed by Jan Boon
parent aeb127e011
commit e4883acceb

@ -6,7 +6,7 @@ BraceWrapping:
AfterControlStatement: true AfterControlStatement: true
AfterEnum: true AfterEnum: true
AfterFunction: true AfterFunction: true
AfterNamespace: true AfterNamespace: false
AfterObjCDeclaration: true AfterObjCDeclaration: true
AfterStruct: true AfterStruct: true
AfterUnion: true AfterUnion: true

@ -95,6 +95,11 @@ struct CHashKey
return HashKeyString == v.HashKeyString; return HashKeyString == v.HashKeyString;
} }
bool operator!=(const CHashKey &v) const
{
return !(*this == v);
}
// this string is always 20 bytes long and is the code in binary format (can't print it directly) // this string is always 20 bytes long and is the code in binary format (can't print it directly)
std::string HashKeyString; std::string HashKeyString;
}; };

Loading…
Cancel
Save