]> granicus.if.org Git - clang/commit
Fix bug that would lead to joining preprocessor directives.
authorDaniel Jasper <djasper@google.com>
Mon, 14 Jan 2013 15:52:06 +0000 (15:52 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 14 Jan 2013 15:52:06 +0000 (15:52 +0000)
commit2b9c10bd8f80c004756308a5163fa7eda27eb5ce
tree2249d69db98e8fdfb5d72caf6f7192e40531b2fc
parente0b15ea7edeceb41decddfeabaf6fac935ed7baf
Fix bug that would lead to joining preprocessor directives.

Before: #include "a.h" #include "b.h"
After:  #include "a.h"
        #include "b.h"

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