]> git.saurik.com Git - cycript.git/blobdiff - ObjectiveC/Internal.hpp
Fix build of cycript when using g++-fsf from Fink.
[cycript.git] / ObjectiveC / Internal.hpp
index 1ac20e2e0f64d42ff7422d23b4c879ba0724a66d..d4e542601ab836c707077d445eafe95a2d7bd21d 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 {{{ */
@@ -45,7 +45,7 @@ struct Instance :
 {
     enum Flags {
         None          = 0,
-        Transient     = (1 << 0),
+        Permanent     = (1 << 0),
         Uninitialized = (1 << 1),
     };
 
@@ -79,7 +79,7 @@ struct Super :
     Class class_;
 
     _finline Super(id value, Class _class) :
-        Instance(value, Instance::Transient),
+        Instance(value, Instance::Permanent),
         class_(_class)
     {
     }