aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Assembly/Writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Assembly/Writer.h')
-rw-r--r--include/llvm/Assembly/Writer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 5798ae8..9f89b31 100644
--- a/include/llvm/Assembly/Writer.h
+++ b/include/llvm/Assembly/Writer.h
@@ -24,6 +24,9 @@
#define LLVM_ASSEMBLY_WRITER_H
#include <iosfwd>
+
+namespace llvm {
+
class Type;
class Module;
class Value;
@@ -43,4 +46,6 @@ std::ostream &WriteTypeSymbolic(std::ostream &, const Type *, const Module *M);
std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true,
bool PrintName = true, const Module *Context = 0);
+} // End llvm namespace
+
#endif