Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/component.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ std::unique_ptr<Component> Component::create(const std::string &type,
void Component::transform(Options& state) {
GuardedOptions guarded(&state, &state_variable_access);
transform_impl(guarded);
#if CHECKLEVEL >= 1
#if CHECKLEVEL >= 3
Comment thread
mikekryjak marked this conversation as resolved.
Outdated
for (auto& [varname, region] : guarded.unreadItems()) {
output_warn.write("Did not read from state variable {} in region(s) {}\n", varname,
Permissions::regionNames(region));
Expand Down
Loading