Browse Source

test: identifier length

Michele Caini 1 year ago
parent
commit
76f988e975
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/entt/core/tuple.cpp

+ 1 - 1
test/entt/core/tuple.cpp

@@ -34,7 +34,7 @@ TEST(Tuple, UnwrapTuple) {
 
 
 TEST(Tuple, ForwardApply) {
 TEST(Tuple, ForwardApply) {
     entt::forward_apply first{[](auto &&...args) { return sizeof...(args); }};
     entt::forward_apply first{[](auto &&...args) { return sizeof...(args); }};
-    entt::forward_apply second{[](int i) { return i; }};
+    entt::forward_apply second{[](int value) { return value; }};
     entt::forward_apply third{[](auto... args) { return (args + ...); }};
     entt::forward_apply third{[](auto... args) { return (args + ...); }};
 
 
     ASSERT_EQ(first(std::make_tuple()), 0u);
     ASSERT_EQ(first(std::make_tuple()), 0u);