Since lua is now compiled as c++, don't declare api functions extern "C".

develop
Alexander Gavrilov 2012-03-25 11:11:45 +04:00
parent def7e51564
commit 5d471a2a74
1 changed files with 1 additions and 1 deletions

@ -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