diff options
author | Benoit Germain <bnt period germain arrobase gmail period com> | 2017-05-10 17:13:04 +0200 |
---|---|---|
committer | Benoit Germain <bnt period germain arrobase gmail period com> | 2017-05-10 17:13:04 +0200 |
commit | f52a6dabba0f6739979fe6312a2c28d02e594a9f (patch) | |
tree | b939c70386860456c57ea918dbe36d74a18f7989 | |
parent | e5f454b3cee91f79f4f107b68a4708addc0a914a (diff) | |
download | lanes-f52a6dabba0f6739979fe6312a2c28d02e594a9f.tar.gz lanes-f52a6dabba0f6739979fe6312a2c28d02e594a9f.tar.bz2 lanes-f52a6dabba0f6739979fe6312a2c28d02e594a9f.zip |
Suppress a #pragma message
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | src/tools.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ CHANGES: | |||
2 | 2 | ||
3 | CHANGE 119: BGe 10-May-17 | 3 | CHANGE 119: BGe 10-May-17 |
4 | * Fixed some compilation warnings | 4 | * Fixed some compilation warnings |
5 | * Improved LuaJIT support | 5 | * Improved LuaJIT support |
6 | 6 | ||
7 | CHANGE 118: trukanduk 21-Nov-16 | 7 | CHANGE 118: trukanduk 21-Nov-16 |
8 | * bumped version to 3.10.1 | 8 | * bumped version to 3.10.1 |
diff --git a/src/tools.c b/src/tools.c index c7da63e..0e8d132 100644 --- a/src/tools.c +++ b/src/tools.c | |||
@@ -207,7 +207,7 @@ static const luaL_Reg libs[] = | |||
207 | #endif // LUA_VERSION_NUM | 207 | #endif // LUA_VERSION_NUM |
208 | { LUA_DBLIBNAME, luaopen_debug}, | 208 | { LUA_DBLIBNAME, luaopen_debug}, |
209 | #if defined LUA_JITLIBNAME // building against LuaJIT headers, add some LuaJIT-specific libs | 209 | #if defined LUA_JITLIBNAME // building against LuaJIT headers, add some LuaJIT-specific libs |
210 | #pragma message( "supporting JIT base libs") | 210 | //#pragma message( "supporting JIT base libs") |
211 | { LUA_BITLIBNAME, luaopen_bit}, | 211 | { LUA_BITLIBNAME, luaopen_bit}, |
212 | { LUA_JITLIBNAME, luaopen_jit}, | 212 | { LUA_JITLIBNAME, luaopen_jit}, |
213 | { LUA_FFILIBNAME, luaopen_ffi}, | 213 | { LUA_FFILIBNAME, luaopen_ffi}, |