]> git.saurik.com Git - cycript.git/commitdiff
Fix a couple simple C++ errors found by clang.
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 12 Jun 2013 07:02:43 +0000 (00:02 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Wed, 12 Jun 2013 07:02:43 +0000 (00:02 -0700)
Internal.hpp
Parser.hpp

index 34ad2574517d9bee46510a26dcaf65acbab952db..032f21671a02198556bbcf0016233beb674b5166 100644 (file)
@@ -172,7 +172,7 @@ struct Functor :
         sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature_, &cif_);
     }
 
-    void (*GetValue())() const {
+    void (*GetValue() const)() {
         return reinterpret_cast<void (*)()>(value_);
     }
 
index d91530549a08b2729d0c9e4aa1f5f10763191bc4..c9614ed604a6e734f09e711b451fa4fc952ff906 100644 (file)
@@ -39,7 +39,7 @@
 #include "Pooling.hpp"
 #include "Options.hpp"
 
-class CYContext;
+struct CYContext;
 
 struct CYThing {
     virtual ~CYThing() {