Go to file
Daniel Jasper ac5c1c286c Prefer splitting after "template <...>" and fix indentation.
This addresses llvm.org/PR14699

Before:
template <typename T>
    void looooooooooooooooooooooongFunction(int Param1, int Param2);
template <typename T> void looooooooooooooooooooongFunction(
    int Paaaaaaaaaaaaaaaaaaaaram1, int Paaaaaaaaaaaaaaaaaaaaram2);

After:
template <typename T>
void looooooooooooooooooooooongFunction(int Param1, int Param2);
template <typename T>
void looooooooooooooooooooongFunction(int Paaaaaaaaaaaaaaaaaaaaram1,
                                      int Paaaaaaaaaaaaaaaaaaaaram2);

llvm-svn: 171388
2013-01-02 15:08:56 +00:00
clang Prefer splitting after "template <...>" and fix indentation. 2013-01-02 15:08:56 +00:00
clang-tools-extra Fix the sorting of the #include lines in these tools. 2013-01-02 10:29:31 +00:00
compiler-rt Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
debuginfo-tests XTARGET was removed, update debug-info tests. 2012-10-20 01:38:50 +00:00
libclc Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
libcxx Updating CREDITS.TXT 2013-01-01 16:09:11 +00:00
libcxxabi Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
lld Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
lldb Update to reflect API changes in r171367. 2013-01-02 12:55:00 +00:00
llvm Actually update the CMake and Makefile builds correctly, and update the 2013-01-02 12:09:16 +00:00
polly Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to 2013-01-02 11:47:44 +00:00