From feefb4859f22539d50be340f59e466e386aecbb9 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Tue, 7 Jul 2015 01:41:36 -0400 Subject: [PATCH] Oh, tabs. Oh, you... --- sol/state.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sol/state.hpp b/sol/state.hpp index befdeb0c..f339e3ec 100644 --- a/sol/state.hpp +++ b/sol/state.hpp @@ -96,12 +96,12 @@ public: lua_pop(L.get(), 1); break; #if SOL_LUA_VERSION > 501 - case lib::coroutine: + case lib::coroutine: luaL_requiref(L.get(), "coroutine", luaopen_coroutine, 1); lua_pop(L.get(), 1); break; #endif // Lua 5.2+ only - case lib::string: + case lib::string: luaL_requiref(L.get(), "string", luaopen_string, 1); lua_pop(L.get(), 1); break;