We are already building into the final result, no need to append it
again.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Paths
| Differential D118245
[clang][DeclPrinter] Fix printing for noexcept expressions ClosedPublic Authored by kadircet on Jan 26 2022, 6:30 AM.
Details Summary We are already building into the final result, no need to append it
Diff Detail
Event TimelineThis revision is now accepted and ready to land.Jan 26 2022, 6:46 AM This revision was landed with ongoing or failed builds.Jan 26 2022, 7:04 AM Closed by commit rGb777d354f670: [clang][DeclPrinter] Fix printing for noexcept expressions (authored by kadircet). · Explain Why This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 403243 clang/lib/AST/DeclPrinter.cpp
clang/unittests/AST/DeclPrinterTest.cpp
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
clang-format: please reformat the code
- ASSERT_TRUE(PrintedDeclCXX11Matches( - "struct Z {" - " void A(int a) noexcept(true);" - "};", - "A", - "void A(int a) noexcept(true)")); + ASSERT_TRUE(PrintedDeclCXX11Matches("struct Z {" + " void A(int a) noexcept(true);" + "};", + "A", "void A(int a) noexcept(true)"));