Fixed ugly typo in __decrement function of Basehandle. Seems to be unused in the rest of the code.

This commit is contained in:
Jan Möbius
2016-02-04 09:40:23 +01:00
parent cd777c7b6b
commit cee7b56f5e

View File

@@ -99,7 +99,7 @@ public:
void __decrement() { --idx_; } void __decrement() { --idx_; }
void __increment(int amount) { idx_ += amount; } void __increment(int amount) { idx_ += amount; }
void __decrement(int amount) { idx_ += amount; } void __decrement(int amount) { idx_ -= amount; }
private: private: