From ca5cad83e2b09f87f49e0d38f3f401e5dd8e16e7 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 15 Jun 2026 23:48:25 -0400 Subject: [PATCH] A little cleanup before trying to use it. --- src/fuc2.cpp | 3 +-- tests/sample1.cpp | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/fuc2.cpp b/src/fuc2.cpp index c2ed540..32d8c03 100644 --- a/src/fuc2.cpp +++ b/src/fuc2.cpp @@ -27,8 +27,7 @@ namespace fuc2 { test_sig.function_name()); } - void CHECK(bool test, const std::string &message, const std::source_location location) - { + void CHECK(bool test, const std::string &message, const std::source_location location) { if(!test) { auto test_value = fmt::format("{} != true", test); throw std::runtime_error( diff --git a/tests/sample1.cpp b/tests/sample1.cpp index e22e337..ff82677 100644 --- a/tests/sample1.cpp +++ b/tests/sample1.cpp @@ -56,7 +56,6 @@ namespace sample1 { BLOWS_UP(runner, "pop_front empty should crash"); } - fuc2::Set TESTS{ .name="std::deque basic operations", .options={ .fail_fast=false },