Fix the formatting of pointer/reference types in range-based for loops.
Before: for (int & a : Values) {} After: for (int &a : Values) {} llvm-svn: 173259
Loading
Please register or sign in to comment
Before: for (int & a : Values) {} After: for (int &a : Values) {} llvm-svn: 173259