Skip to content

Commit f7a2234

Browse files
committed
Fix for MSVC
1 parent f29be61 commit f7a2234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flang/include/flang/Semantics/dump-expr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class DumpEvaluateExpr {
5151
#elif defined(_MSC_VER)
5252
std::string_view v(__FUNCSIG__);
5353
// Extract the "xyz" from the "pretty function" string:
54-
// "... TypeOf<xyz>::get(void)"
55-
std::string_view front(" TypeOf<");
54+
// "...TypeOf<xyz>::get(void)"
55+
std::string_view front("TypeOf<");
5656
std::string_view back(">::get(void)");
5757

5858
#else

0 commit comments

Comments
 (0)