diff options
author | Tom Hughes <tomhughes@chromium.org> | 2023-03-14 11:02:39 -0700 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-03-16 01:01:01 +0000 |
commit | 7a9f47487c41d15b3f8aeb4372afc36fc0dfceae (patch) | |
tree | 11379a82a539f3308fe664a10b47b92d51d649b1 /test | |
parent | d826a966469853fc37d9b844b00c7ad680deaad9 (diff) | |
download | chrome-ec-7a9f47487c41d15b3f8aeb4372afc36fc0dfceae.tar.gz |
tree: Run clang-format on C++ files
BRANCH=none
BUG=none
TEST=CQ passes
Change-Id: I4e359ebbfacfa10239e991ee89da82db5161ef20
Signed-off-by: Tom Hughes <tomhughes@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4338476
Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/aes.cc | 2 | ||||
-rw-r--r-- | test/rng_benchmark.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/aes.cc b/test/aes.cc index 6986abd148..d08679d489 100644 --- a/test/aes.cc +++ b/test/aes.cc @@ -19,8 +19,8 @@ #include "test_util.h" extern "C" { -#include "aes.h" #include "aes-gcm.h" +#include "aes.h" #include "builtin/assert.h" #include "console.h" #include "timer.h" diff --git a/test/rng_benchmark.cc b/test/rng_benchmark.cc index 2e47b8ea27..c086ff2cb0 100644 --- a/test/rng_benchmark.cc +++ b/test/rng_benchmark.cc @@ -7,8 +7,8 @@ */ #include "benchmark.h" - #include "console.h" + #include <array> #include <cstdint> #include <cstdlib> |