This is an archive of the discontinued LLVM Phabricator instance.

clang-format: Fix space between generic type parameter and square bracket
ClosedPublic

Authored by het on Nov 18 2014, 3:09 PM.

Details

Reviewers
djasper
Summary

Before

public Foo<X, Y> [] foos;

After

public Foo<X, Y>[] foos;

Diff Detail

Event Timeline

het updated this revision to Diff 16352.Nov 18 2014, 3:09 PM
het retitled this revision from to clang-format: Fix space between generic type parameter and square bracket.
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).
djasper accepted this revision.Nov 18 2014, 3:15 PM
djasper edited edge metadata.

Looks good. I'll submit this patch.

This revision is now accepted and ready to land.Nov 18 2014, 3:15 PM
djasper closed this revision.Nov 18 2014, 3:48 PM

Submitted as r222283. Thank you!