X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/c1d3e52e58e86c49f9d04e06ae8e0ece4b98250c..51b2dc6b0c969f9297c8464cb91e93d65819e0ae:/Location.hpp diff --git a/Location.hpp b/Location.hpp index a53e932..b2d71ae 100644 --- a/Location.hpp +++ b/Location.hpp @@ -37,12 +37,12 @@ class CYPosition { { } - void lines(unsigned count = 1) { + void Lines(unsigned count = 1) { column = 0; line += count; } - void columns(unsigned count = 1) { + void Columns(unsigned count = 1) { column += count; } };