Put all LLVM code into the llvm namespace, as per bug 109.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9903 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/bugpoint/BugDriver.h b/tools/bugpoint/BugDriver.h
index e1af721..af04a7d 100644
--- a/tools/bugpoint/BugDriver.h
+++ b/tools/bugpoint/BugDriver.h
@@ -19,6 +19,8 @@
#include <vector>
#include <string>
+namespace llvm {
+
class PassInfo;
class Module;
class Function;
@@ -207,4 +209,6 @@
//
void DeleteFunctionBody(Function *F);
+} // End llvm namespace
+
#endif