From 2f65f7ff58d787819d62929e107f7a88997cca51 Mon Sep 17 00:00:00 2001 From: Hans Wennborg <hans@hanshq.net> Date: Wed, 29 Oct 2014 22:49:58 +0000 Subject: [PATCH] Sink a #include while we're here. NFC. Format.h doesn't use stack. llvm-svn: 220879 --- clang/include/clang/Format/Format.h | 1 - clang/lib/Format/UnwrappedLineParser.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h index 12928559af38..ac6759442fec 100644 --- a/clang/include/clang/Format/Format.h +++ b/clang/include/clang/Format/Format.h @@ -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 { diff --git a/clang/lib/Format/UnwrappedLineParser.h b/clang/lib/Format/UnwrappedLineParser.h index be13fa5cfc89..d2f17e015c8a 100644 --- a/clang/lib/Format/UnwrappedLineParser.h +++ b/clang/lib/Format/UnwrappedLineParser.h @@ -20,6 +20,7 @@ #include "clang/Basic/IdentifierTable.h" #include "clang/Format/Format.h" #include <list> +#include <stack> namespace clang { namespace format {