13
0

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 Paul Davis
parent e38cb7de36
commit 270edc18ad

View File

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