]> granicus.if.org Git - clang/commit
clang-format: Support #include_next
authorDaniel Jasper <djasper@google.com>
Tue, 19 May 2015 11:22:29 +0000 (11:22 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 19 May 2015 11:22:29 +0000 (11:22 +0000)
commitd42fd2ae0f416b651d5c4d25b7bbe1225ace8d02
tree06673dae14c5f1ef5c846df66702b0bbc482e704
parent857905e4b431fd93282bbd44c6cff159d3ec8840
clang-format: Support #include_next

Before:
  #include_next < test.h >

After:
  #include_next <test.h>

This fixes llvm.org/PR23500

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237686 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTest.cpp