X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/58afc6aaca119c6b7b9ac5d91e3c6ee28dbd6fda..5484650436e242f4072a31482771333be0191497:/Location.hpp diff --git a/Location.hpp b/Location.hpp index 2d52569..a5c5a67 100644 --- a/Location.hpp +++ b/Location.hpp @@ -1,5 +1,5 @@ -/* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2014 Jay Freeman (saurik) +/* Cycript - The Truly Universal Scripting Language + * Copyright (C) 2009-2016 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; } };