This commit is contained in:
Tiago Gomes 2012-12-10 19:37:41 +00:00
parent a25f4584c8
commit 8371e395dd

View File

@ -165,7 +165,10 @@ class LitLvTypes
if (types1.lid_ < types2.lid_) {
return true;
}
return types1.lvTypes_ < types2.lvTypes_;
if (types1.lid_ == types2.lid_) {
return types1.lvTypes_ < types2.lvTypes_;
}
return false;
}
};