From e5bb46afdafbc4de1e2bc734748c72129dc3476c Mon Sep 17 00:00:00 2001 From: PrincessNyanara Date: Mon, 9 Jun 2014 01:36:41 -0400 Subject: [PATCH] better `Or` implementation i don't think i use it anymore though... --- sol/traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sol/traits.hpp b/sol/traits.hpp index 6d987af9..b093d7c9 100644 --- a/sol/traits.hpp +++ b/sol/traits.hpp @@ -51,7 +51,7 @@ template struct Or : Bool {}; template -struct Or : If, Or, Bool> {}; +struct Or : If, Or> {}; template using EnableIf = typename std::enable_if::value, int>::type;