瀏覽代碼

Fix size method of Value class

Eric Ramat 2 年之前
父節點
當前提交
82f1160371
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/artis-star/common/Value.hpp

+ 1 - 1
src/artis-star/common/Value.hpp

@@ -158,7 +158,7 @@ public:
   size_t size() const
   {
 
-    assert(is_type<Z>());
+    assert(is_type<Z*>());
 
     return _size / sizeof(Z);
   }