]> git.saurik.com Git - cycript.git/blobdiff - Location.hpp
Use variadic templates to better organize Classes.
[cycript.git] / Location.hpp
index 2d525692cb3f4f005b8afaaddad85d596afd38af..b2d71ae9c3a41781468839c5a1eb650ccac7ebed 100644 (file)
@@ -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;
     }
 };