From b8072ca3b1f8ab3b61980b5995965d5367d2bad3 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Tue, 16 Jun 2026 00:41:25 -0400 Subject: [PATCH] Make options optional, and they'll be set by an option parser later. --- include/fuc2/testing.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fuc2/testing.hpp b/include/fuc2/testing.hpp index ab3a0f2..f51de03 100644 --- a/include/fuc2/testing.hpp +++ b/include/fuc2/testing.hpp @@ -9,12 +9,12 @@ namespace fuc2 { using Case = std::pair; struct Options { - bool fail_fast; + bool fail_fast = false; }; struct Set { std::string name; - Options options; + Options options{}; std::vector tests; std::source_location location = std::source_location::current(); };