diff options
author | madmaxoft <github@xoft.cz> | 2014-05-01 23:38:35 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-05-01 23:38:35 +0200 |
commit | d950c8346fe0c89594e871f014f449e595c97706 (patch) | |
tree | 4d424d417ebf7aa7ca2c3eece5654e22855cde21 /src/Bindings/LuaChunkStay.cpp | |
parent | Fixed a warning in Noise. (diff) | |
download | cuberite-d950c8346fe0c89594e871f014f449e595c97706.tar cuberite-d950c8346fe0c89594e871f014f449e595c97706.tar.gz cuberite-d950c8346fe0c89594e871f014f449e595c97706.tar.bz2 cuberite-d950c8346fe0c89594e871f014f449e595c97706.tar.lz cuberite-d950c8346fe0c89594e871f014f449e595c97706.tar.xz cuberite-d950c8346fe0c89594e871f014f449e595c97706.tar.zst cuberite-d950c8346fe0c89594e871f014f449e595c97706.zip |
Diffstat (limited to 'src/Bindings/LuaChunkStay.cpp')
-rw-r--r-- | src/Bindings/LuaChunkStay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bindings/LuaChunkStay.cpp b/src/Bindings/LuaChunkStay.cpp index db865cfa4..985a18a95 100644 --- a/src/Bindings/LuaChunkStay.cpp +++ b/src/Bindings/LuaChunkStay.cpp @@ -42,7 +42,7 @@ bool cLuaChunkStay::AddChunks(int a_ChunkCoordTableStackPos) // Add each set of coords: int NumChunks = luaL_getn(L, a_ChunkCoordTableStackPos); - m_Chunks.reserve(NumChunks); + m_Chunks.reserve((size_t)NumChunks); for (int idx = 1; idx <= NumChunks; idx++) { // Push the idx-th element of the array onto stack top, check that it's a table: |