summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2019-10-19 12:11:13 -0400
committer GitHub <noreply@github.com>2019-10-19 12:11:13 -0400
commitc82cfa17686492ddbc548884e475a87d662dcf44 (patch)
tree9a660e07581432754ec7d39eff62dd02f4e244a3 /3rdparty
parenteeb072a56f40330b761bfa928b9612ab866dfec6 (diff)
parentd51d2a71d58ea17238ad65612040f68fb407c3c1 (diff)
Merge pull request #5758 from vadosnaprimer/luaengine_ram
luaengine: reduce memory usage during compilation
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/sol2/sol/traits.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/sol2/sol/traits.hpp b/3rdparty/sol2/sol/traits.hpp
index 1ed95a1656e..762bc84b947 100644
--- a/3rdparty/sol2/sol/traits.hpp
+++ b/3rdparty/sol2/sol/traits.hpp
@@ -252,7 +252,7 @@ namespace sol {
using yes = char;
using no = struct { char s[2]; };
- struct F { void operator()(); };
+ struct F { void operator()() {}; };
struct Derived : T, F {};
template<typename U, U> struct Check;