Whoops, missed a couple more C-style casts.
[oota-llvm.git] / include / llvm / Support / Debug.h
index 8cba05771fb4b8a3e7c42857cd3b1073aa319fae..472364ba2fa92ed2ea49f1c2546913172fa08033 100644 (file)
@@ -1,10 +1,10 @@
-//===- Debug.h - An easy way to add debug output to your code ---*- C++ -*-===//
-// 
+//===- llvm/Support/Debug.h - Easy way to add debug output ------*- C++ -*-===//
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file implements a handle way of adding debugging information to your
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_DEBUG_H
-#define SUPPORT_DEBUG_H
+#ifndef LLVM_SUPPORT_DEBUG_H
+#define LLVM_SUPPORT_DEBUG_H
+
+namespace llvm {
 
 // DebugFlag - This boolean is set to true if the '-debug' command line option
 // is specified.  This should probably not be referenced directly, instead, use
@@ -57,4 +59,6 @@ bool isCurrentDebugType(const char *Type);
   do { if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { X; } } while (0)
 #endif
 
+} // End llvm namespace
+
 #endif