Go to file
Daniel Jasper 11164bdaf5 clang-format: Remove empty lines at the beginning of blocks.
They very rarely aid readability.

Formatting:
  void f() {

    if (a) {

      f();

    }

  }

Now leads to:
  void f() {
    if (a) {
      f();
    }
  }

llvm-svn: 204460
2014-03-21 12:58:53 +00:00
clang clang-format: Remove empty lines at the beginning of blocks. 2014-03-21 12:58:53 +00:00
clang-tools-extra ClangTidyContext: Don't use initializer on non-static member. 2014-03-20 10:53:03 +00:00
compiler-rt [sanitizer] more human-readable deadlock reports 2014-03-21 11:37:43 +00:00
debuginfo-tests relax testcase for LLDB output format compatibility. 2014-03-19 23:06:18 +00:00
libclc Fix build since r202052 2014-02-24 21:31:56 +00:00
libcxx Implement N3891: A proposal to rename shared_mutex to shared_timed_mutex 2014-03-17 20:19:44 +00:00
libcxxabi Simplify. 2014-03-20 01:28:28 +00:00
lld [PECOFF] Fix possible response file buffer overrun. 2014-03-21 00:48:26 +00:00
lldb Don't build LLDBWrapPython.cpp for mingw. 2014-03-21 12:53:28 +00:00
llvm [SystemZ] Use "let Predicates =" for blocks of new instructions 2014-03-21 11:04:54 +00:00
openmp Revert commit (testing commit hook). 2014-03-04 18:06:04 +00:00
polly www: Remove warning about the implementation status 2014-03-21 09:34:38 +00:00