llvm-project/clang/unittests
Daniel Jasper d39312ec84 clang-format: Don't break before a case's colon.
Before (with just the right line length:
  switch (a) {
  case some_namespace::some_constant
      :
    return;
  }

After:
  switch (a) {
  case some_namespace::
      some_constant:
    return;
  }

llvm-svn: 209725
2014-05-28 10:09:11 +00:00
..
AST Rename SourceManager::createFileIDForMemBuffer() 2014-05-16 17:23:01 +00:00
ASTMatchers Make equalsNode work with pointers to subtypes. 2014-05-27 12:31:10 +00:00
Basic SourceManager: Use setMainFileID() consistently 2014-05-21 01:12:41 +00:00
Driver [cleanup] Re-sort includes with llvm/utils/sort_includes.py and fix 2014-03-04 10:05:20 +00:00
Format clang-format: Don't break before a case's colon. 2014-05-28 10:09:11 +00:00
Frontend ASTContext: Declare builtin types implicitly 2013-12-15 10:36:26 +00:00
Lex SourceManager: Use setMainFileID() consistently 2014-05-21 01:12:41 +00:00
Sema Replace OwningPtr with std::unique_ptr. 2014-03-07 20:03:18 +00:00
Tooling [modules] Fix ODR violation: there's another clang::TypeLocVisitor elsewhere. 2014-05-19 22:34:38 +00:00
libclang VirtualFileSystem: Fix a few directory traversal bugs in VFSWriter 2014-05-21 22:46:51 +00:00
CMakeLists.txt libclang: fix a bug in processing invalid arguments, introduced in r201249 2014-02-18 15:20:02 +00:00
Makefile libclang: fix a bug in processing invalid arguments, introduced in r201249 2014-02-18 15:20:02 +00:00