Skip to content

Commit 5576789

Browse files
committed
Fix uninitialized 'system' field for fetch-content
1 parent a362978 commit 5576789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/project_parser.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ struct Content {
155155
Condition<std::string> cmake_after;
156156
ConditionVector include_before;
157157
ConditionVector include_after;
158-
bool system;
158+
bool system = false;
159159
std::string subdir;
160160
};
161161

0 commit comments

Comments
 (0)