From b5ead180bbcdd60f21dc0c7de814be0351fa43ef Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sat, 13 Oct 2018 16:41:52 -0700 Subject: [PATCH] fixing non-msvc compile error --- include/boost/leaf/expect.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/leaf/expect.hpp b/include/boost/leaf/expect.hpp index 8b35353..bf36f93 100644 --- a/include/boost/leaf/expect.hpp +++ b/include/boost/leaf/expect.hpp @@ -137,7 +137,7 @@ boost bool slots_available() noexcept { - bool const available[ ] = { tl_slot::tl_instance().has_value()... }; + bool const available[ ] = { tl_slot::tl_instance().has_value()... }; for( auto i : available ) if( !i ) return false;