Fix a *really* dumb warning on VC

llvm-svn: 14025
This commit is contained in:
Chris Lattner 2004-06-04 20:47:19 +00:00
parent 68ee80d686
commit 1cfb453364

View File

@ -36,7 +36,7 @@ struct TypeInfo {
// Compatibility functions
bool before(const TypeInfo &rhs) const {
return Info->before(*rhs.Info);
return Info->before(*rhs.Info) != 0;
}
const char *getClassName() const {
return Info->name();