diff --git a/.travis.yml b/.travis.yml index 205ae6ab..190717d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,5 +4,6 @@ os: script: - make -f Bootstrap.mak $TRAVIS_OS_NAME + - make -C build/bootstrap -j config=debug - bin/release/premake5 test diff --git a/contrib/luashim/luashim.c b/contrib/luashim/luashim.c index 205c3ad0..de929fe4 100644 --- a/contrib/luashim/luashim.c +++ b/contrib/luashim/luashim.c @@ -828,12 +828,12 @@ char* luaL_buffinitsize(lua_State* L, luaL_Buffer* B, size_t sz) return g_shimTable->shimL_buffinitsize(L, B, sz); } -inline const Node* hashpow2(const Table* t, int n) { +static const Node* hashpow2(const Table* t, int n) { int i = lmod(n, sizenode(t)); return &t->node[i]; } -inline const Node* findNode(const Table* t, int key) { +static const Node* findNode(const Table* t, int key) { const Node* n = hashpow2(t, key); while (n->i_key.tvk.value_.i != key) {