We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f987b commit e1283eeCopy full SHA for e1283ee
frontend/include/chpl/resolution/resolution-types.h
@@ -3113,6 +3113,13 @@ class ResolvedFunction {
3113
chpl::mark<decltype(p.first)>{}(context, p.first);
3114
context->markPointer(p.second);
3115
}
3116
+ for (auto& p : implicitInits_) {
3117
+ p.first.mark(context);
3118
+ for (auto& key : p.second) {
3119
+ context->markPointer(key.first);
3120
+ key.second.mark(context);
3121
+ }
3122
3123
3124
size_t hash() const {
3125
// Skip 'resolutionById_' since it can be quite large.
0 commit comments