From 36f2b4393cf08d33c390d4bffd33dc87f392242f Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Thu, 30 Apr 2020 17:11:28 +0200 Subject: [PATCH] Remove unnecessary declaration. --- src/wren/vm.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/wren/vm.hpp b/src/wren/vm.hpp index 970dd09..80151d2 100644 --- a/src/wren/vm.hpp +++ b/src/wren/vm.hpp @@ -94,13 +94,6 @@ namespace wren { template detail::Callbacks to_callbacks (T& conf); -#if __cpp_concepts >= 201907 - template -#else - template -#endif - std::tuple variables_impl (std::integer_sequence, Params&&... modules_names); - std::unique_ptr m_local; };