llvm-project/clang/lib/Format
Daniel Jasper 8b1c63543b Teach clang-format to understand static_asserts better.
Before:
  template <bool B, bool C>
  class A {
    static_assert(B &&C, "Something is wrong");
  };

After:
  template <bool B, bool C>
  class A {
    static_assert(B && C, "Something is wrong");
  };

(Note the spacing around '&&'). Also change the identifier table to always
understand all C++11 keywords (which seems like the right thing to do).

llvm-svn: 187589
2013-08-01 17:58:23 +00:00
..
BreakableToken.cpp Add 'static' and 'const' qualifiers to some arrays of strings. 2013-07-15 08:24:27 +00:00
BreakableToken.h Reformat clang-format's source files after r185822 and others. 2013-07-08 14:34:09 +00:00
CMakeLists.txt Unified token breaking logic for strings and block comments. 2013-04-15 14:28:00 +00:00
Encoding.h Reformat clang-format's source files after r185822 and others. 2013-07-08 14:34:09 +00:00
Format.cpp Teach clang-format to understand static_asserts better. 2013-08-01 17:58:23 +00:00
FormatToken.h clang-format: Add two new style options to support WebKit style. 2013-07-26 16:56:36 +00:00
Makefile
TokenAnnotator.cpp Teach clang-format to understand static_asserts better. 2013-08-01 17:58:23 +00:00
TokenAnnotator.h UTF-8 support for clang-format. 2013-06-05 14:09:10 +00:00
UnwrappedLineParser.cpp clang-format: Add more options to namespace indentation. 2013-07-31 23:16:02 +00:00
UnwrappedLineParser.h clang-format: Add more options to namespace indentation. 2013-07-31 23:16:02 +00:00
WhitespaceManager.cpp clang-format: Make alignment of trailing comments optional .. 2013-07-31 23:55:15 +00:00
WhitespaceManager.h Reformat clang-format's source files after r185822 and others. 2013-07-08 14:34:09 +00:00