This is an archive of the discontinued LLVM Phabricator instance.

Fixes bug 19983 - SBPO_Always not covering all the cases
ClosedPublic

Authored by lifted on Aug 5 2014, 12:35 AM.

Details

Reviewers
djasper
Summary

http://llvm.org/bugs/show_bug.cgi?id=19983

clang-format: Add a space between function template explicit template arguments
and left parenthesis if SBPO_Always option is set.

Before:

auto i = std::make_unique<int>(5);

After:

auto i = std::make_unique<int> (5);

Diff Detail

Event Timeline

lifted updated this revision to Diff 12188.Aug 5 2014, 12:35 AM
lifted retitled this revision from to Fixes bug 19983 - SBPO_Always not covering all the cases.
lifted updated this object.
lifted added a reviewer: djasper.
lifted added a subscriber: Unknown Object (MLST).
lifted updated this object.Aug 5 2014, 12:36 AM
djasper accepted this revision.Aug 5 2014, 12:42 AM
djasper edited edge metadata.

Looks good. Thanks!

This revision is now accepted and ready to land.Aug 5 2014, 12:42 AM

Daniel, could you please commit this patch? I have no commit access yet.

Thanks in advance.

Committed r214904.

lifted closed this revision.Aug 6 2014, 10:37 PM