diff options
Diffstat (limited to '3rdparty/sol2/sol/traits.hpp')
-rw-r--r-- | 3rdparty/sol2/sol/traits.hpp | 2 |
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; |