diff options
author | Xerxes Ranby <xerxes@zafena.se> | 2009-11-09 14:50:34 +0000 |
---|---|---|
committer | Xerxes Ranby <xerxes@zafena.se> | 2009-11-09 14:50:34 +0000 |
commit | 666eecfd9e3463f981d935d8fb082a3716604f61 (patch) | |
tree | 183f860fe502e50a2788b07962d4f5e0457dbcdb /lib/Support | |
parent | b0273e0a346ffd639eb062e6cc752a2799a29826 (diff) | |
download | external_llvm-666eecfd9e3463f981d935d8fb082a3716604f61.zip external_llvm-666eecfd9e3463f981d935d8fb082a3716604f61.tar.gz external_llvm-666eecfd9e3463f981d935d8fb082a3716604f61.tar.bz2 |
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
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Debug.cpp b/lib/Support/Debug.cpp index d4954b6..50abe01 100644 --- a/lib/Support/Debug.cpp +++ b/lib/Support/Debug.cpp @@ -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; } |