llvm-project/clang/lib
Daniel Jasper ccb68b487e clang-format: [Java] Accept generic types in enum declaration
Before:
  enum Foo implements Bar<X, Y> {
    ABC {
      ...
    }
    , CDE {
      ...
    };
  }

After:
  enum Foo implements Bar<X, Y> {
    ABC {
      ...
    },
    CDE {
      ...
    };
  }

Patch by Harry Terkelsen.

llvm-svn: 222394
2014-11-19 22:38:18 +00:00
..
ARCMigrate clang-format a recent commit I made 2014-11-19 05:48:40 +00:00
AST Constify a few IdentifierInfo * parameters. 2014-11-19 22:03:46 +00:00
ASTMatchers Remove VariadicOperatorMatcherInterface as it is redundant with logic from DynTypedMatcher. 2014-11-17 14:55:49 +00:00
Analysis Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. 2014-11-19 07:49:47 +00:00
Basic [CMake] Always include the Clang repo version, just like the autoconf build. 2014-11-19 22:03:48 +00:00
CodeGen DebugInfo: Don't emit a 'global variable' when a static member declaration is referenced without a definition, just ensure the enclosing class (with the static member declaration) is emitted. 2014-11-19 19:42:40 +00:00
Driver Driver: correct typo 2014-11-19 17:59:00 +00:00
Edit Edit: Do not extend a removal to include trailing whitespace if we're at the end 2014-09-15 11:47:10 +00:00
Format clang-format: [Java] Accept generic types in enum declaration 2014-11-19 22:38:18 +00:00
Frontend Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. 2014-11-19 07:49:47 +00:00
FrontendTool Provide a BuryPointer for unique_ptrs. 2014-08-29 16:53:14 +00:00
Headers [PowerPC] Enable vec_perm for long long and double vector types for VSX 2014-11-14 13:10:13 +00:00
Index [CMake] Prune redundant libdeps. 2014-10-30 01:37:44 +00:00
Lex clang-format a recent commit I made 2014-11-19 05:48:40 +00:00
Parse Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. 2014-11-19 07:49:47 +00:00
Rewrite Trim some includes. NFC. 2014-10-29 22:13:46 +00:00
Sema Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. 2014-11-19 07:49:47 +00:00
Serialization Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. 2014-11-19 07:49:47 +00:00
StaticAnalyzer Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept. 2014-11-19 07:49:47 +00:00
Tooling [Tooling] Restore current directory after processing each file. 2014-11-10 15:42:31 +00:00
CMakeLists.txt Fix build with various feature flag combinations 2014-07-14 22:17:22 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00