]> granicus.if.org Git - clang/commit
clang-format: Fix whitespaces in include directives.
authorDaniel Jasper <djasper@google.com>
Wed, 30 Oct 2013 13:54:53 +0000 (13:54 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 30 Oct 2013 13:54:53 +0000 (13:54 +0000)
commit8437957c9da906c24d4e385869c05d8e601c664d
tree1c2451d705febb5af5eb04b90fba97b3d5f71ceb
parentc70cc5d90403f99ccce5cab3a6c022ad9cdcb66c
clang-format: Fix whitespaces in include directives.

Before (clang-format wouldn't change):
  #include  "a.h"
  #include<a>

After:
  #include "a.h"
  #include <a>

This fixes llvm.org/PR16151.

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