This is an archive of the discontinued LLVM Phabricator instance.

clang-format: accept generic types in enum declaration
ClosedPublic

Authored by het on Nov 19 2014, 1:11 PM.

Details

Reviewers
djasper
Summary

Before

enum Foo implements Bar<X, Y> {
  ABC {
    ...
  }
  , CDE {
    ...
  };
}

After

enum Foo implements Bar<X, Y> {
  ABC {
    ...
  },
  CDE {
    ...
  };
}

Diff Detail

Event Timeline

het updated this revision to Diff 16395.Nov 19 2014, 1:11 PM
het retitled this revision from to clang-format: accept generic types in enum declaration.
het updated this object.
het edited the test plan for this revision. (Show Details)
het added a reviewer: djasper.
het set the repository for this revision to rL LLVM.
het added a subscriber: Unknown Object (MLST).
het updated this revision to Diff 16396.Nov 19 2014, 1:23 PM
djasper accepted this revision.Nov 19 2014, 2:34 PM
djasper edited edge metadata.

Looks good, I'll submit.

This revision is now accepted and ready to land.Nov 19 2014, 2:34 PM
djasper closed this revision.Nov 19 2014, 2:38 PM

Submitted as r222394. Thank you.