Make lib/Support/Debug.cpp SetCurrentDebugType implementation part of llvm namespace to match function declaration in Debug.h.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86544 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Xerxes Ranby 2009-11-09 14:50:34 +00:00
parent b8e0ebf034
commit 5aa638d8f7

View File

@ -62,7 +62,7 @@ bool llvm::isCurrentDebugType(const char *DebugType) {
/// 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;
}