We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cbce79 commit c442292Copy full SHA for c442292
include/mimic++/printing/type/PostProcessing.hpp
@@ -302,6 +302,11 @@ namespace mimicpp::printing::type::detail
302
static RegexT const omitAccessSpecifiers{R"(\b(?:public|private|protected):\s+)"};
303
name = std::regex_replace(name, omitAccessSpecifiers, "");
304
305
+ #if MIMICPP_DETAIL_IS_CLANG_CL
306
+ static RegexT const omitAutoTokens{R"(<auto>\s*)"};
307
+ name = std::regex_replace(name, omitAutoTokens, "");
308
+ #endif
309
+
310
static RegexT const omitStaticSpecifier{R"(\bstatic\s+)"};
311
name = std::regex_replace(name, omitStaticSpecifier, "");
312
0 commit comments