From 175c04323ad1aaaa1e0c949b8de411d5e2cece74 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 17 Jul 2024 11:33:25 -0400 Subject: Avoid C-style casts and some size type conversions Aside from the syntactic cast changes, reduces some size types to 32-bits, since they can never be so large in practice. This eliminates some type conversions and shaves a few bytes. --- tests/.clang-tidy | 1 - tests/ingen_bench.cpp | 2 +- tests/ingen_test.cpp | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/.clang-tidy b/tests/.clang-tidy index 7e189145..6c26f23c 100644 --- a/tests/.clang-tidy +++ b/tests/.clang-tidy @@ -10,7 +10,6 @@ Checks: > -cppcoreguidelines-pro-type-reinterpret-cast, -cppcoreguidelines-pro-type-union-access, -fuchsia-statically-constructed-objects, - -google-readability-casting, -google-readability-todo, -llvm-header-guard, -readability-function-cognitive-complexity, diff --git a/tests/ingen_bench.cpp b/tests/ingen_bench.cpp index a445bdc0..c20e2782 100644 --- a/tests/ingen_bench.cpp +++ b/tests/ingen_bench.cpp @@ -97,7 +97,7 @@ run(int argc, char** argv) "Unable to load server module"); // Initialise engine - ingen_try(bool(world->engine()), + ingen_try(!!world->engine(), "Unable to create engine"); world->engine()->init(48000.0, 4096, 4096); world->engine()->activate(); diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index 8a3d9007..1e0fcfec 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -115,7 +115,7 @@ run(int argc, char** argv) "Unable to load server module"); // Initialise engine - ingen_try(bool(world->engine()), + ingen_try(!!world->engine(), "Unable to create engine"); world->engine()->init(48000.0, 4096, 4096); world->engine()->activate(); -- cgit v1.2.1