From de02eac39465bb214b476dfff1ecfe018cf327d9 Mon Sep 17 00:00:00 2001 From: River <26424577+wusatosi@users.noreply.github.com> Date: Fri, 18 Oct 2024 20:13:06 -0400 Subject: [PATCH 1/4] Update identity.hpp --- include/beman/exemplar/identity.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/beman/exemplar/identity.hpp b/include/beman/exemplar/identity.hpp index 789c319..ecb3943 100644 --- a/include/beman/exemplar/identity.hpp +++ b/include/beman/exemplar/identity.hpp @@ -35,6 +35,10 @@ struct identity { #endif T&& operator()(T&& t) const noexcept { + int + size + = + 0; return std::forward(t); } From 7aeea8a4cbc917e600b61124b03a43895cabe6ad Mon Sep 17 00:00:00 2001 From: River <26424577+wusatosi@users.noreply.github.com> Date: Fri, 18 Oct 2024 20:32:20 -0400 Subject: [PATCH 2/4] Adds trailing white spaces --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 90d9ff2..dce9f1f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,4 @@ # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # Codeowners for reviews on PRs -* @bretbrownjr @camio @dietmarkuehl @neatudarius @steve-downey +* @bretbrownjr @camio @dietmarkuehl @neatudarius @steve-downey From a0a6ba01a22c046d6e398bb3419128c53b494bac Mon Sep 17 00:00:00 2001 From: River <26424577+wusatosi@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:48:24 -0400 Subject: [PATCH 3/4] trigger CI --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index dce9f1f..5a2b1a4 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,3 +2,4 @@ # Codeowners for reviews on PRs * @bretbrownjr @camio @dietmarkuehl @neatudarius @steve-downey + From 9ef44b085837ec7b4cb484d27021f04b36aa6bce Mon Sep 17 00:00:00 2001 From: River <26424577+wusatosi@users.noreply.github.com> Date: Tue, 22 Oct 2024 18:19:19 -0400 Subject: [PATCH 4/4] Trigger CI --- src/beman/exemplar/identity.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beman/exemplar/identity.t.cpp b/src/beman/exemplar/identity.t.cpp index 7f68fdf..283d53c 100644 --- a/src/beman/exemplar/identity.t.cpp +++ b/src/beman/exemplar/identity.t.cpp @@ -11,7 +11,7 @@ namespace exe = beman::exemplar; TEST(IdentityTest, call_identity_with_int) { for (int i = -100; i < 100; ++i) { - EXPECT_EQ(i, exe::identity()(i)); + EXPECT_EQ(i, exe::identity()(i)); } }