llvm-project/clang/unittests
Daniel Jasper b8f6168218 clang-format: Fix ObjC literal indentation in Google style.
Style guide demands a two-space indent.

Before:
  NSArray *arguments = @[
      kind == kUserTicket ? @"--user-store" : @"--system-store",
      @"--print-tickets",
      @"--productid",
      @"com.google.Chrome"
  ];

After:
  NSArray *arguments = @[
    kind == kUserTicket ? @"--user-store" : @"--system-store",
    @"--print-tickets",
    @"--productid",
    @"com.google.Chrome"
  ];

llvm-svn: 193168
2013-10-22 15:45:58 +00:00
..
AST Fix missing source location in CXXTemporaryObjectExpr nodes. 2013-09-07 05:49:53 +00:00
ASTMatchers Revert "Refactor DynTypedMatcher into a value type class, just like Matcher<T>." 2013-10-21 22:26:36 +00:00
Basic Use llvm::sys::fs::UniqueID for windows and unix. 2013-08-01 21:42:11 +00:00
Format clang-format: Fix ObjC literal indentation in Google style. 2013-10-22 15:45:58 +00:00
Frontend [Driver] Refactor clang driver to use LLVM's Option library 2013-06-14 17:17:23 +00:00
Lex Fix use-after-free in PPCallbacksTest detected by ASan bootstrap bot 2013-10-14 07:13:59 +00:00
Sema Add hooks to ExternalSemaSource for after-the-fact diagnosis of 2013-08-12 22:11:14 +00:00
Tooling Reverted r192992 broke windows and freebsd builds. 2013-10-18 19:48:31 +00:00
CMakeLists.txt Add hooks for typo correction to ExternalSemaSource, courtesy of Luke Zarko. 2013-08-12 19:54:38 +00:00
Makefile Fix dependencies now that the ARC migrator depends on the static analyzer. 2013-08-22 15:50:02 +00:00