From 5576789c18f9a67e9d3ba3fba8ccdcbd3b9e6e43 Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sat, 6 Jul 2024 14:02:33 +0200 Subject: [PATCH] Fix uninitialized 'system' field for fetch-content --- include/project_parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/project_parser.hpp b/include/project_parser.hpp index c49eaaa..941736d 100644 --- a/include/project_parser.hpp +++ b/include/project_parser.hpp @@ -155,7 +155,7 @@ struct Content { Condition cmake_after; ConditionVector include_before; ConditionVector include_after; - bool system; + bool system = false; std::string subdir; };