]> git.saurik.com Git - cycript.git/commitdiff
sig::Copy should use const for source arguments.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 12 Jan 2014 07:53:34 +0000 (23:53 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 12 Jan 2014 07:53:34 +0000 (23:53 -0800)
sig/copy.cpp
sig/parse.hpp

index b85640c1e1555598787dff2fc4cca2864fae3735..b2c20f5542a4959b0cd0228019c6e97d97bbe5f7 100644 (file)
@@ -34,7 +34,7 @@
 
 namespace sig {
 
 
 namespace sig {
 
-void Copy(CYPool &pool, Element &lhs, Element &rhs) {
+void Copy(CYPool &pool, Element &lhs, const Element &rhs) {
     lhs.name = pool.strdup(rhs.name);
     if (rhs.type == NULL)
         lhs.type = NULL;
     lhs.name = pool.strdup(rhs.name);
     if (rhs.type == NULL)
         lhs.type = NULL;
@@ -45,7 +45,7 @@ void Copy(CYPool &pool, Element &lhs, Element &rhs) {
     lhs.offset = rhs.offset;
 }
 
     lhs.offset = rhs.offset;
 }
 
-void Copy(CYPool &pool, Signature &lhs, Signature &rhs) {
+void Copy(CYPool &pool, Signature &lhs, const Signature &rhs) {
     size_t count(rhs.count);
     lhs.count = count;
     lhs.elements = new(pool) Element[count];
     size_t count(rhs.count);
     lhs.count = count;
     lhs.elements = new(pool) Element[count];
@@ -53,7 +53,7 @@ void Copy(CYPool &pool, Signature &lhs, Signature &rhs) {
         Copy(pool, lhs.elements[index], rhs.elements[index]);
 }
 
         Copy(pool, lhs.elements[index], rhs.elements[index]);
 }
 
-void Copy(CYPool &pool, Type &lhs, Type &rhs) {
+void Copy(CYPool &pool, Type &lhs, const Type &rhs) {
     lhs.primitive = rhs.primitive;
     lhs.name = pool.strdup(rhs.name);
     lhs.flags = rhs.flags;
     lhs.primitive = rhs.primitive;
     lhs.name = pool.strdup(rhs.name);
     lhs.flags = rhs.flags;
@@ -62,7 +62,7 @@ void Copy(CYPool &pool, Type &lhs, Type &rhs) {
         Copy(pool, lhs.data.signature, rhs.data.signature);
     else {
         sig::Type *&lht(lhs.data.data.type);
         Copy(pool, lhs.data.signature, rhs.data.signature);
     else {
         sig::Type *&lht(lhs.data.data.type);
-        sig::Type *&rht(rhs.data.data.type);
+        sig::Type *const &rht(rhs.data.data.type);
 
         if (rht == NULL)
             lht = NULL;
 
         if (rht == NULL)
             lht = NULL;
index fb6db63beea186a3440423b4e81451b7ca1e8871..a770f2074d5fe58e2dc6d4325ceb1b41ace19a65 100644 (file)
@@ -33,9 +33,9 @@ void Parse(CYPool &pool, struct Signature *signature, const char *name, Callback
 const char *Unparse(CYPool &pool, struct Signature *signature);
 const char *Unparse(CYPool &pool, struct Type *type);
 
 const char *Unparse(CYPool &pool, struct Signature *signature);
 const char *Unparse(CYPool &pool, struct Type *type);
 
-void Copy(CYPool &pool, Type &lhs, Type &rhs);
-void Copy(CYPool &pool, Signature &lhs, Signature &rhs);
-void Copy(CYPool &pool, Type &lhs, Type &rhs);
+void Copy(CYPool &pool, Type &lhs, const Type &rhs);
+void Copy(CYPool &pool, Signature &lhs, const Signature &rhs);
+void Copy(CYPool &pool, Type &lhs, const Type &rhs);
 
 }
 
 
 }