X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/c1d3e52e58e86c49f9d04e06ae8e0ece4b98250c..bd5734cc00d2257272e8f7702f9e9b6f64858907:/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; } };