Fixed ugly typo in __decrement function of Basehandle. Seems to be unused in the rest of the code.
This commit is contained in:
@@ -99,7 +99,7 @@ public:
|
||||
void __decrement() { --idx_; }
|
||||
|
||||
void __increment(int amount) { idx_ += amount; }
|
||||
void __decrement(int amount) { idx_ += amount; }
|
||||
void __decrement(int amount) { idx_ -= amount; }
|
||||
|
||||
private:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user