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 @@ -856,9 +856,9 @@ class te_parser
856856 inline static auto get_arity (const te_variant_type& var) noexcept
857857 {
858858 return std::visit (
859- [](const auto & var ) -> size_t
859+ [](const auto & var_ ) -> size_t
860860 {
861- using T = std::decay_t <decltype (var )>;
861+ using T = std::decay_t <decltype (var_ )>;
862862 if constexpr (te_is_constant_v<T> || te_is_variable_v<T>)
863863 {
864864 return 0 ;
@@ -905,9 +905,9 @@ class te_parser
905905 constexpr static bool is_function (const te_variant_type& var) noexcept
906906 {
907907 return std::visit (
908- [](const auto & var ) -> bool
908+ [](const auto & var_ ) -> bool
909909 {
910- using T = std::decay_t <decltype (var )>;
910+ using T = std::decay_t <decltype (var_ )>;
911911 return te_is_function_v<T>;
912912 },
913913 var);
@@ -932,9 +932,9 @@ class te_parser
932932 constexpr static bool is_closure (const te_variant_type& var) noexcept
933933 {
934934 return std::visit (
935- [](const auto & var ) -> bool
935+ [](const auto & var_ ) -> bool
936936 {
937- using T = std::decay_t <decltype (var )>;
937+ using T = std::decay_t <decltype (var_ )>;
938938 return te_is_closure<T>::value;
939939 },
940940 var);
You can’t perform that action at this time.
0 commit comments