[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h
Bill Wendling
isanbard at gmail.com
Thu Nov 16 17:13:26 PST 2006
Changes in directory llvm/include/llvm/Support:
Debug.h updated: 1.8 -> 1.9
---
Log message:
Adjusted the // comments so that doxygen picks them up.
---
Diffs of the changes: (+7 -7)
Debug.h | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
Index: llvm/include/llvm/Support/Debug.h
diff -u llvm/include/llvm/Support/Debug.h:1.8 llvm/include/llvm/Support/Debug.h:1.9
--- llvm/include/llvm/Support/Debug.h:1.8 Thu Nov 16 18:49:12 2006
+++ llvm/include/llvm/Support/Debug.h Thu Nov 16 19:13:12 2006
@@ -61,9 +61,9 @@
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 @@
}
};
-// 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
More information about the llvm-commits
mailing list