From ebfbb3f6dfb68e9c4701f1068f35f4c33ff47d07 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Sat, 22 Dec 2018 16:05:36 -0500 Subject: [PATCH] Squashed '3rdparty/toluapp/' changes from db877c5d..afe3be74 afe3be74 Enable std c99 (#5) git-subtree-dir: 3rdparty/toluapp git-subtree-split: afe3be74401a5e3fa592ddc1b0c625862ea3301d --- include/tolua++.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tolua++.h b/include/tolua++.h index f57d56d2..cd21db4e 100644 --- a/include/tolua++.h +++ b/include/tolua++.h @@ -140,13 +140,13 @@ static inline const char* tolua_tocppstring (lua_State* L, int narg, const char* const char* s = tolua_tostring(L, narg, def); return s?s:""; -}; +} static inline const char* tolua_tofieldcppstring (lua_State* L, int lo, int index, const char* def) { const char* s = tolua_tofieldstring(L, lo, index, def); return s?s:""; -}; +} #else #define tolua_tocppstring tolua_tostring