diff options
| author | Aaron Smith <aaron.smith@microsoft.com> | 2020-04-30 09:11:54 -0700 |
|---|---|---|
| committer | Aaron Smith <aaron.smith@microsoft.com> | 2020-04-30 09:11:54 -0700 |
| commit | 292058a5d6d708ec7d285a452d4350b33ba080dc (patch) | |
| tree | f8647a4e747ed00c100ca07305d3b8265e3323cd /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
| parent | 2fd7d364cd999c743b5bdefa7ee9e5630f3564ad (diff) | |
[clang-format] Fix Microsoft style for enums
Summary:
Before this change enums were formatted incorrectly for the Microsoft style.
[C++ Example]
enum {
one,
two
} three, four;
[Incorrectly Formatted]
enum
{
one,
two
} three,
four;
[Correct Format with Patch]
enum
{
one,
two
} three, four;
Reviewers: jbcoe, MyDeveloperDay, rnk
Reviewed By: MyDeveloperDay
Subscribers: cfe-commits
Tags: #clang, #clang-format
Differential Revision: https://reviews.llvm.org/D78982
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
0 files changed, 0 insertions, 0 deletions
