diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp index c870ff01605e7..7b4ec25a8938f 100644 --- a/clang/lib/Format/UnwrappedLineParser.cpp +++ b/clang/lib/Format/UnwrappedLineParser.cpp @@ -1171,6 +1171,12 @@ void UnwrappedLineParser::parsePPDefine() { assert((int)Line->PPLevel >= 0); Line->InMacroBody = true; + if (FormatTok->is(tok::identifier) && + Tokens->peekNextToken()->is(tok::colon)) { + nextToken(); + nextToken(); + } + // Errors during a preprocessor directive can only affect the layout of the // preprocessor directive, and thus we ignore them. An alternative approach // would be to use the same approach we use on the file level (no diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 67423f9b06fbc..d095a2b751def 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -1863,6 +1863,8 @@ TEST_F(FormatTest, UnderstandsMacros) { verifyFormat("MACRO(something##something)"); verifyFormat("MACRO(return##something)"); verifyFormat("MACRO(co_return##something)"); + + verifyFormat("#define A x:"); } TEST_F(FormatTest, ShortBlocksInMacrosDontMergeWithCodeAfterMacro) {