diff options
author | Mattes D <github@xoft.cz> | 2014-10-19 18:45:32 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-19 18:45:42 +0200 |
commit | cf73fee7e362134dc4caabc7c99f3a5bb0593a99 (patch) | |
tree | 871252d73bb6187cc4bfc95abdbfbe7fccd55bd5 /src/Bindings | |
parent | TwoLevel BioGen: fixed swapped inside and outside biomes. (diff) | |
download | cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.tar cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.tar.gz cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.tar.bz2 cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.tar.lz cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.tar.xz cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.tar.zst cuberite-cf73fee7e362134dc4caabc7c99f3a5bb0593a99.zip |
Diffstat (limited to 'src/Bindings')
-rw-r--r-- | src/Bindings/LuaState.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bindings/LuaState.h b/src/Bindings/LuaState.h index 779760017..899228a66 100644 --- a/src/Bindings/LuaState.h +++ b/src/Bindings/LuaState.h @@ -363,7 +363,7 @@ protected: } /** Variadic template recursor: More params to push. Push them and recurse. */ - template<typename T, typename... Args> + template <typename T, typename... Args> inline bool PushCallPop(T a_Param, Args &&... args) { Push(a_Param); |