clang-format: Fix AlwaysBreakAfterDefinitionReturnType in Stroutrup style
Before: template <class T> T *f(T &c) // Problem here: no line break before f { return NULL; } After: template <class T> T * f(T &c) { return NULL; } Patch by Marek Kurdej, thank you! llvm-svn: 215633
Loading
Please register or sign in to comment