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 d4d8095 commit 8babecfCopy full SHA for 8babecf
flang/include/flang/Semantics/dump-expr.h
@@ -40,7 +40,6 @@ class DumpEvaluateExpr {
40
41
private:
42
template <typename T> struct TypeOf {
43
- static constexpr std::string_view name{TypeOf<T>::get()};
44
static constexpr std::string_view get() {
45
std::string_view v(__PRETTY_FUNCTION__);
46
// Extract the "xyz" from the "pretty function" string:
@@ -59,6 +58,8 @@ class DumpEvaluateExpr {
59
58
}
60
return "";
61
+
62
+ static constexpr std::string_view name{TypeOf<T>::get()};
63
};
64
65
template <typename A, bool C> void Show(const common::Indirection<A, C> &x) {
0 commit comments