Преглед на файлове

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;
 		}
 	};