X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/58afc6aaca119c6b7b9ac5d91e3c6ee28dbd6fda..51b2dc6b0c969f9297c8464cb91e93d65819e0ae:/Location.hpp diff --git a/Location.hpp b/Location.hpp index 2d52569..b2d71ae 100644 --- a/Location.hpp +++ b/Location.hpp @@ -1,5 +1,5 @@ /* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2014 Jay Freeman (saurik) + * Copyright (C) 2009-2015 Jay Freeman (saurik) */ /* GNU Affero General Public License, Version 3 {{{ */ @@ -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; } };