r220879 - Sink a #include while we're here. NFC.
Hans Wennborg
hans at hanshq.net
Wed Oct 29 15:49:59 PDT 2014
Author: hans
Date: Wed Oct 29 17:49:58 2014
New Revision: 220879
URL: http://llvm.org/viewvc/llvm-project?rev=220879&view=rev
Log:
Sink a #include while we're here. NFC.
Format.h doesn't use stack.
Modified:
cfe/trunk/include/clang/Format/Format.h
cfe/trunk/lib/Format/UnwrappedLineParser.h
Modified: cfe/trunk/include/clang/Format/Format.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Format/Format.h?rev=220879&r1=220878&r2=220879&view=diff
==============================================================================
--- cfe/trunk/include/clang/Format/Format.h (original)
+++ cfe/trunk/include/clang/Format/Format.h Wed Oct 29 17:49:58 2014
@@ -18,7 +18,6 @@
#include "clang/Basic/LangOptions.h"
#include "clang/Tooling/Core/Replacement.h"
#include "llvm/ADT/ArrayRef.h"
-#include <stack>
#include <system_error>
namespace clang {
Modified: cfe/trunk/lib/Format/UnwrappedLineParser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/UnwrappedLineParser.h?rev=220879&r1=220878&r2=220879&view=diff
==============================================================================
--- cfe/trunk/lib/Format/UnwrappedLineParser.h (original)
+++ cfe/trunk/lib/Format/UnwrappedLineParser.h Wed Oct 29 17:49:58 2014
@@ -20,6 +20,7 @@
#include "clang/Basic/IdentifierTable.h"
#include "clang/Format/Format.h"
#include <list>
+#include <stack>
namespace clang {
namespace format {
More information about the cfe-commits
mailing list