浏览代码

Use NumericTransportValue<B> for base B in NumericContainedValueBase to push values

Ole Krüger 10 年之前
父节点
当前提交
655aac558e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/luwra/types.hpp

+ 1 - 1
lib/luwra/types.hpp

@@ -152,7 +152,7 @@ namespace internal {
 
 		static inline
 		int Push(State* state, I value) {
-			Push(state, static_cast<B>(value));
+			NumericTransportValue<B>::Push(state, static_cast<B>(value));
 			return 1;
 		}
 	};