[flang][OpenMP] Fix build break with -Werror

llvm-project/flang/lib/Semantics/resolve-directives.cpp:753:7: error: default label in switch which covers all enumeration values [-Werror,-Wcovered-switch-default]
  753 |       default:
      |       ^
1 error generated.

https://lab.llvm.org/buildbot/#/builders/53/builds/17917
This commit is contained in:
Krzysztof Parzyszek 2025-07-22 09:09:53 -05:00
parent f7a3be7311
commit 3855c49f28

View File

@ -750,8 +750,6 @@ public:
case parser::OmpMapType::Value::Delete:
ompFlag = Symbol::Flag::OmpMapDelete;
break;
default:
break;
}
}
if (!ompFlag) {