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

llvm-svn: 86544
This commit is contained in:
Xerxes Ranby 2009-11-09 14:50:34 +00:00
parent 8dd7c54a42
commit 7c16a89ebf
1 changed files with 1 additions and 1 deletions

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;
}