diff options
author | est31 <MTest31@outlook.com> | 2016-01-23 05:45:00 +0100 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2016-01-23 05:45:29 +0100 |
commit | e50c784e2ca55735fc360ae51534288c2ea59ca5 (patch) | |
tree | 5460f36ef2e8a72ac629548f027956f055502bf1 /src/script/cpp_api/s_base.cpp | |
parent | 0459eca8eb2e73e9670e00b838dabc9347acb35f (diff) | |
download | minetest-e50c784e2ca55735fc360ae51534288c2ea59ca5.tar.xz |
Fix C++11 compilability
Previous commits broke it... :(
Diffstat (limited to 'src/script/cpp_api/s_base.cpp')
-rw-r--r-- | src/script/cpp_api/s_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/cpp_api/s_base.cpp b/src/script/cpp_api/s_base.cpp index 71369e3d7..679a517ee 100644 --- a/src/script/cpp_api/s_base.cpp +++ b/src/script/cpp_api/s_base.cpp @@ -68,7 +68,7 @@ public: */ ScriptApiBase::ScriptApiBase() : - m_luastackmutex(true) + m_luastackmutex() { #ifdef SCRIPTAPI_LOCK_DEBUG m_lock_recursion_count = 0; |