Skip to content
  1. May 06, 2013
    • Daniel Jasper's avatar
      Don't break comments after includes. · 4a4be018
      Daniel Jasper authored
      LLVM/Clang basically don't use such comments and for Google-style,
      include-lines are explicitly exempt from the column limit. Also, for
      most cases, where the column limit is violated, the "better" solution
      would be to move the comment to before the include, which clang-format
      cannot do (yet).
      
      llvm-svn: 181191
      4a4be018
    • Daniel Jasper's avatar
      Change indentation when breaking after a type. · 8e35769b
      Daniel Jasper authored
      clang-format did not indent any declarations/definitions when breaking
      after the type. With this change, it indents for all declarations but
      does not indent for function definitions, i.e.:
      
      Before:
      const SomeLongTypeName&
      some_long_variable_name;
      typedef SomeLongTypeName
      SomeLongTypeAlias;
      const SomeLongReturnType*
      SomeLongFunctionName();
      const SomeLongReturnType*
      SomeLongFunctionName() { ... }
      
      After:
      const SomeLongTypeName&
          some_long_variable_name;
      typedef SomeLongTypeName
          SomeLongTypeAlias;
      const SomeLongReturnType*
          SomeLongFunctionName();
      const SomeLongReturnType*
      SomeLongFunctionName() { ... }
      
      While it might seem inconsistent to indent function declarations, but
      not definitions, there are two reasons for that:
      - Function declarations are very similar to declarations of function
      type variables, so there is another side to consistency to consider.
      - There can be many function declarations on subsequent lines and not
      indenting can make them harder to identify. Function definitions
      are already separated by their body and not indenting
      makes the function name slighly easier to find.
      
      llvm-svn: 181187
      8e35769b
    • John McCall's avatar
      Require the containing type to be complete when we see · 768439eb
      John McCall authored
      __alignof__ of a field.
      
      This problem can only happen in C++11.
      
      Also do some petty optimizations.
      
      rdar://13784901
      
      llvm-svn: 181185
      768439eb
    • Richard Smith's avatar
      C++1y: support range-based for loops in constant expressions. · 896e0d75
      Richard Smith authored
      llvm-svn: 181184
      896e0d75
    • Daniel Jasper's avatar
      Break the class-inheritance ":" to the new line. · a61aefb3
      Daniel Jasper authored
      This seems to be more common in LLVM, Google and Chromium.
      
      Before:
      class AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA :
          public BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB,
          public CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC {
      };
      
      After:
      class AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
          : public BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB,
            public CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC {
      };
      
      llvm-svn: 181183
      a61aefb3
    • Daniel Jasper's avatar
      Don't put a space before ellipsis. · 10cd581f
      Daniel Jasper authored
      Before: template <class ... Ts> void Foo(Ts ... ts) { Foo(ts ...); }
      After:  template <class... Ts> void Foo(Ts... ts) { Foo(ts...); }
      llvm-svn: 181182
      10cd581f
    • Richard Smith's avatar
      4e18ca52
    • Richard Smith's avatar
      Fix assert if __extension__ or _Generic is used when initializing a char array... · d74b1606
      Richard Smith authored
      Fix assert if __extension__ or _Generic is used when initializing a char array from a string literal.
      
      llvm-svn: 181174
      d74b1606
    • Richard Smith's avatar
      243ef907
  2. May 05, 2013
  3. May 04, 2013
Loading