1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Change a #include into a forward declaration

llvm-svn: 42781
This commit is contained in:
Chris Lattner 2007-10-09 03:40:30 +00:00
parent 257d5a5127
commit 19cb9fa4cc
2 changed files with 2 additions and 1 deletions

View File

@ -18,10 +18,10 @@
#include "llvm/Support/DataTypes.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/APFloat.h"
#include <string>
namespace llvm {
class APFloat;
/// This folding set used for two purposes:
/// 1. Given information about a node we want to create, look up the unique

View File

@ -15,6 +15,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/APFloat.h"
#include "llvm/Support/MathExtras.h"
#include <cassert>
using namespace llvm;