From 34fd07b1b4b1cf33283aad5922c8e9f36106ceba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Thu, 25 Oct 2018 22:08:57 +0200 Subject: [PATCH] Ignore maximal munch issue in type spelling in clang 7 --- test/cpp_template_parameter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cpp_template_parameter.cpp b/test/cpp_template_parameter.cpp index c7ba3d8..22a70bc 100644 --- a/test/cpp_template_parameter.cpp +++ b/test/cpp_template_parameter.cpp @@ -28,8 +28,8 @@ using c = void; template using d = void; -// maximal munch here -template > +// potential maximal munch here, but ignore it +template > using e = void; )";