aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/Debug.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-11-17 01:13:12 +0000
committerBill Wendling <isanbard@gmail.com>2006-11-17 01:13:12 +0000
commit8ea7c52185e3e686f8ca9d65d0135771329fbaa8 (patch)
tree48c30aaa6f61c1ab158c8b9a3dfd085e8e0c533e /include/llvm/Support/Debug.h
parent54fcc7f70405646a386c7718896fe8f28d5f5308 (diff)
downloadexternal_llvm-8ea7c52185e3e686f8ca9d65d0135771329fbaa8.zip
external_llvm-8ea7c52185e3e686f8ca9d65d0135771329fbaa8.tar.gz
external_llvm-8ea7c52185e3e686f8ca9d65d0135771329fbaa8.tar.bz2
Adjusted the // comments so that doxygen picks them up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Debug.h')
-rw-r--r--include/llvm/Support/Debug.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/Support/Debug.h b/include/llvm/Support/Debug.h
index f14da84..27e4221 100644
--- a/include/llvm/Support/Debug.h
+++ b/include/llvm/Support/Debug.h
@@ -61,9 +61,9 @@ bool isCurrentDebugType(const char *Type);
do { if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { X; } } while (0)
#endif
-// llvm_ostream - Acts like an ostream. However, it doesn't print things out if
-// an ostream isn't specified.
-//
+/// llvm_ostream - Acts like an ostream. However, it doesn't print things out if
+/// an ostream isn't specified.
+///
class llvm_ostream {
std::ostream* Stream;
public:
@@ -77,10 +77,10 @@ public:
}
};
-// getErrorOutputStream - Returns the error output stream (std::cerr). This
-// places the std::c* I/O streams into one .cpp file and relieves the whole
-// program from having to have hundreds of static c'tor/d'tors for them.
-//
+/// getErrorOutputStream - Returns the error output stream (std::cerr). This
+/// places the std::c* I/O streams into one .cpp file and relieves the whole
+/// program from having to have hundreds of static c'tor/d'tors for them.
+///
llvm_ostream getErrorOutputStream(const char *DebugType);
#ifdef NDEBUG