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