Revision tags: llvmorg-18.1.8, llvmorg-18.1.7 |
|
#
1c58208d |
| 21-May-2024 |
Owen Pan <owenpiano@gmail.com> |
[clang-format][NFC] Remove redundnat llvm::, clang::, etc.
|
Revision tags: llvmorg-18.1.6, llvmorg-18.1.5, llvmorg-18.1.4 |
|
#
943db678 |
| 07-Apr-2024 |
Owen Pan <owenpiano@gmail.com> |
[clang-format][NFC] Add getNextNonComment() to FormatTokenSource (#87868)
|
Revision tags: llvmorg-18.1.3, llvmorg-18.1.2 |
|
#
426e6945 |
| 16-Mar-2024 |
Owen Pan <owenpiano@gmail.com> |
[clang-format][NFC] Delete redundant and extraneous #include lines
|
Revision tags: llvmorg-18.1.1, llvmorg-18.1.0, llvmorg-18.1.0-rc4, llvmorg-18.1.0-rc3, llvmorg-18.1.0-rc2, llvmorg-18.1.0-rc1, llvmorg-19-init, llvmorg-17.0.6, llvmorg-17.0.5, llvmorg-17.0.4, llvmorg-17.0.3, llvmorg-17.0.2, llvmorg-17.0.1, llvmorg-17.0.0, llvmorg-17.0.0-rc4 |
|
#
91c4db00 |
| 24-Aug-2023 |
Owen Pan <owenpiano@gmail.com> |
[clang-format][NFC] Replace !is() with isNot()
Differential Revision: https://reviews.llvm.org/D158571
|
Revision tags: llvmorg-17.0.0-rc3, llvmorg-17.0.0-rc2, llvmorg-17.0.0-rc1, llvmorg-18-init, llvmorg-16.0.6, llvmorg-16.0.5, llvmorg-16.0.4, llvmorg-16.0.3, llvmorg-16.0.2, llvmorg-16.0.1, llvmorg-16.0.0 |
|
#
7eaa7b05 |
| 16-Mar-2023 |
Kazu Hirata <kazu@google.com> |
[clang] Use *{Map,Set}::contains (NFC)
|
Revision tags: llvmorg-16.0.0-rc4, llvmorg-16.0.0-rc3 |
|
#
8c1f77af |
| 15-Feb-2023 |
Manuel Klimek <klimek@google.com> |
[clang-format] Fix windows build.
MSVC needs a return after llvm_unreachable.
|
#
1f818f63 |
| 15-Feb-2023 |
Benjamin Kramer <benny.kra@googlemail.com> |
[clang-format] assert(false) -> llvm_unreachable
Avoids warnings in -asserts builds.
FormatTokenSource.h:240:3: error: non-void function does not return a value [-Werror,-Wreturn-type] } ^
|
Revision tags: llvmorg-16.0.0-rc2 |
|
#
1995d442 |
| 01-Feb-2023 |
Manuel Klimek <klimek@google.com> |
[clang-format] Enable FormatTokenSource to insert tokens.
In preparation for configured macro replacements in formatting, add the ability to insert tokens to FormatTokenSource, and implement token i
[clang-format] Enable FormatTokenSource to insert tokens.
In preparation for configured macro replacements in formatting, add the ability to insert tokens to FormatTokenSource, and implement token insertion in IndexedTokenSource.
Differential Revision: https://reviews.llvm.org/D143070
show more ...
|
#
ffc9b80c |
| 31-Jan-2023 |
Benjamin Kramer <benny.kra@googlemail.com> |
[clang-format] Fix use after free in FormatTokenSource test
Add a lifetime annotation to IndexedTokenSource so we get a warning for this pattern.
|
#
04ed86ff |
| 31-Jan-2023 |
Manuel Klimek <klimek@google.com> |
[clang-format][NFC] Bring FormatTokenSource under test.
Add tests for FormatTokenSource and harden it against edge cases.
|
#
be31f2c1 |
| 31-Jan-2023 |
Manuel Klimek <klimek@google.com> |
[clang-format][NFC] Move IndexedTokenSource to FormatTokenSource header.
Finish refactoring of the token sources towards a single location.
|
#
c3bc61d7 |
| 31-Jan-2023 |
Manuel Klimek <klimek@google.com> |
[clang-format][NFC] Pull FormatTokenSource into its own header.
Prepare getting FormatTokenSource under unit testing.
|