You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (auto extension : ExtensionRegistry::getExtensions()) {
232
232
for (auto file : extension->hackFiles()) {
233
-
if (!files.count(file)) {
233
+
if (!files.contains(file)) {
234
234
Logger::Error(
235
235
"Error while compiling stdlib: %s not found in input files - did you add an extension without any hack files? If so, override hackFiles to return an empty vector.", file.c_str());
0 commit comments