[llvm-commits] [llvm] r86544 - /llvm/trunk/lib/Support/Debug.cpp
Xerxes Ranby
xerxes at zafena.se
Mon Nov 9 06:50:35 PST 2009
Author: xranby
Date: Mon Nov 9 08:50:34 2009
New Revision: 86544
URL: http://llvm.org/viewvc/llvm-project?rev=86544&view=rev
Log:
Make lib/Support/Debug.cpp SetCurrentDebugType implementation part of llvm namespace to match function declaration in Debug.h.
Modified:
llvm/trunk/lib/Support/Debug.cpp
Modified: llvm/trunk/lib/Support/Debug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Debug.cpp?rev=86544&r1=86543&r2=86544&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Debug.cpp (original)
+++ llvm/trunk/lib/Support/Debug.cpp Mon Nov 9 08:50:34 2009
@@ -62,7 +62,7 @@
/// option were specified. Note that DebugFlag also needs to be set to true for
/// debug output to be produced.
///
-void SetCurrentDebugType(const char *Type) {
+void llvm::SetCurrentDebugType(const char *Type) {
CurrentDebugType = Type;
}
More information about the llvm-commits
mailing list