From b1af00f048b64c762f318f8c7d8dcb7af3e294cc Mon Sep 17 00:00:00 2001 From: FYP Date: Fri, 16 Dec 2016 12:20:28 +0300 Subject: [PATCH] fix thread_status::dead value for luajit --- sol/types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sol/types.hpp b/sol/types.hpp index e8817f97..6ad6bb8b 100644 --- a/sol/types.hpp +++ b/sol/types.hpp @@ -343,7 +343,7 @@ namespace sol { memory = LUA_ERRMEM, gc = LUA_ERRGCMM, handler = LUA_ERRERR, - dead, + dead = -1, }; enum class load_status : int {