Skip to content

Commit 3a9685b

Browse files
authored
Merge pull request #145 from build-cpp/system-bug
Fix uninitialized 'system' field for fetch-content
2 parents a362978 + 5576789 commit 3a9685b

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)