File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -911,9 +911,9 @@ class te_parser
911911 static auto get_arity (const te_variant_type& var)
912912 {
913913 return std::visit (
914- [](const auto & var ) -> size_t
914+ [](const auto & var0 ) -> size_t
915915 {
916- using T = std::decay_t <decltype (var )>;
916+ using T = std::decay_t <decltype (var0 )>;
917917 if constexpr (te_is_constant_v<T> || te_is_variable_v<T>)
918918 {
919919 return 0 ;
@@ -960,9 +960,9 @@ class te_parser
960960 constexpr static bool is_function (const te_variant_type& var)
961961 {
962962 return std::visit (
963- [](const auto & var ) -> bool
963+ [](const auto & var0 ) -> bool
964964 {
965- using T = std::decay_t <decltype (var )>;
965+ using T = std::decay_t <decltype (var0 )>;
966966 return te_is_function_v<T>;
967967 },
968968 var);
@@ -989,9 +989,9 @@ class te_parser
989989 constexpr static bool is_closure (const te_variant_type& var)
990990 {
991991 return std::visit (
992- [](const auto & var ) -> bool
992+ [](const auto & var0 ) -> bool
993993 {
994- using T = std::decay_t <decltype (var )>;
994+ using T = std::decay_t <decltype (var0 )>;
995995 return te_is_closure<T>::value;
996996 },
997997 var);
You can’t perform that action at this time.
0 commit comments