summaryrefslogtreecommitdiffstats
path: root/llvm
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
commitfc01016c75dc7ca8ee2b93fc8353520ec2de58f4 (patch)
tree3f1b6717f289e1d19c8aba74d4163814d8e3a41f /llvm
parentd108b9a60d5e50b8a2a6edf0ae0272bcf100e76a (diff)
downloadbcm5719-llvm-fc01016c75dc7ca8ee2b93fc8353520ec2de58f4.tar.gz
bcm5719-llvm-fc01016c75dc7ca8ee2b93fc8353520ec2de58f4.zip
Adjusted the // comments so that doxygen picks them up.
llvm-svn: 31801
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/Support/Debug.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/include/llvm/Support/Debug.h b/llvm/include/llvm/Support/Debug.h
index f14da843d76..27e4221c9e7 100644
--- a/llvm/include/llvm/Support/Debug.h
+++ b/llvm/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
OpenPOWER on IntegriCloud