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 d3c9a97 commit eb05a2eCopy full SHA for eb05a2e
flang/include/flang/Common/visit.h
@@ -23,6 +23,7 @@
23
24
#include "variant.h"
25
#include "flang/Common/api-attrs.h"
26
+#include "llvm/Support/Compiler.h"
27
#include <type_traits>
28
29
namespace Fortran::common {
@@ -40,11 +41,17 @@ inline RT_API_ATTRS RESULT Log2VisitHelper(
40
41
return visitor(std::get<(LOW + N)>(std::forward<VARIANT>(u))...); \
42
}
43
VISIT_CASE_N(1)
44
+ LLVM_FALLTHROUGH;
45
VISIT_CASE_N(2)
46
47
VISIT_CASE_N(3)
48
49
VISIT_CASE_N(4)
50
51
VISIT_CASE_N(5)
52
53
VISIT_CASE_N(6)
54
55
VISIT_CASE_N(7)
56
#undef VISIT_CASE_N
57
0 commit comments