diff options
| author | Alexander Gavrilov | 2012-03-25 11:11:45 +0400 |
|---|---|---|
| committer | Alexander Gavrilov | 2012-03-25 11:11:45 +0400 |
| commit | 5d471a2a74a47167b830ee1e6be2e319404d965f (patch) | |
| tree | 9e92ef34ef4dc72780d84f13022a842d0df0783d /depends/lua | |
| parent | def7e51564e86e02b9a3a31b2f7cfd3be503d67c (diff) | |
| download | dfhack-5d471a2a74a47167b830ee1e6be2e319404d965f.tar.gz dfhack-5d471a2a74a47167b830ee1e6be2e319404d965f.tar.bz2 dfhack-5d471a2a74a47167b830ee1e6be2e319404d965f.tar.xz | |
Since lua is now compiled as c++, don't declare api functions extern "C".
Diffstat (limited to 'depends/lua')
| -rw-r--r-- | depends/lua/include/luaconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/lua/include/luaconf.h b/depends/lua/include/luaconf.h index 25f08c0c..ffa33a0d 100644 --- a/depends/lua/include/luaconf.h +++ b/depends/lua/include/luaconf.h @@ -152,7 +152,7 @@ ** LUA_BUILD_AS_DLL to get it). */ #ifdef __cplusplus - #define LUA_API_EXTERN extern "C" + #define LUA_API_EXTERN extern #else #define LUA_API_EXTERN extern #endif |
