]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/tagged.hpp
VM: Remove redundant #ifdef FACTOR_DEBUGs
[factor.git] / vm / tagged.hpp
index 04a25486b964330c8cbf4b4e25c6298b344e4500..4ec0f7e93493c01b6661a91e998269a6374e7798 100644 (file)
@@ -23,16 +23,12 @@ template <typename Type> struct tagged {
   }
 
   cell value() const {
-#ifdef FACTOR_DEBUG
     FACTOR_ASSERT(type_p());
-#endif
     return value_;
   }
 
   Type* untagged() const {
-#ifdef FACTOR_DEBUG
     FACTOR_ASSERT(type_p());
-#endif
     return (Type*)(UNTAG(value_));
   }