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);