]> git.saurik.com Git - cycript.git/blobdiff - Location.hpp
Unify the build environment for Android and Apple.
[cycript.git] / Location.hpp
index 2d525692cb3f4f005b8afaaddad85d596afd38af..a5c5a6788cf7ba5ce88cc1a6fd2fc114b5646aa0 100644 (file)
@@ -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;
     }
 };