Typo fixed: call class method instead of trying to use as a variable

This commit is contained in:
Michael R. Fisher 2013-07-15 16:38:54 -05:00 committed by Michael Fisher
parent 7f6765ece4
commit 5e739dbfc1

View File

@ -123,7 +123,7 @@ public:
return time() < o.time();
}
if (bank != o.bank()) {
if (bank() != o.bank()) {
return bank() < o.bank();
}