Add some missing #includes for GCC mainline, patch by Shantonu Sen!

llvm-svn: 48153
This commit is contained in:
Chris Lattner 2008-03-10 17:04:53 +00:00
parent 48e3375544
commit 0d799d3957
5 changed files with 5 additions and 3 deletions

View File

@ -25,7 +25,7 @@
#include <iomanip>
#include <algorithm>
#include <sstream>
#include <iostream>
using namespace clang;

View File

@ -16,6 +16,7 @@
#include <cassert>
#include <vector>
#include <map>
#include <cstring>
using namespace clang;
//===----------------------------------------------------------------------===//

View File

@ -23,7 +23,7 @@
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Support/Streams.h"
#include <fstream>
#include <cstring>
using namespace clang;
//===----------------------------------------------------------------------===//

View File

@ -14,6 +14,7 @@
#include "clang/Lex/ScratchBuffer.h"
#include "clang/Basic/SourceManager.h"
#include "llvm/Support/MemoryBuffer.h"
#include <cstring>
using namespace clang;
// ScratchBufSize - The size of each chunk of scratch memory. Slightly less

View File

@ -16,7 +16,7 @@
#include "llvm/ADT/iterator"
#include <list>
#include <cstring>
namespace clang {