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
This commit is contained in:
Bill Wendling 2006-11-17 01:13:12 +00:00
parent 54fcc7f704
commit 8ea7c52185

View File

@ -61,9 +61,9 @@ bool isCurrentDebugType(const char *Type);
do { if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { X; } } while (0) do { if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { X; } } while (0)
#endif #endif
// llvm_ostream - Acts like an ostream. However, it doesn't print things out if /// llvm_ostream - Acts like an ostream. However, it doesn't print things out if
// an ostream isn't specified. /// an ostream isn't specified.
// ///
class llvm_ostream { class llvm_ostream {
std::ostream* Stream; std::ostream* Stream;
public: public:
@ -77,10 +77,10 @@ public:
} }
}; };
// getErrorOutputStream - Returns the error output stream (std::cerr). This /// getErrorOutputStream - Returns the error output stream (std::cerr). This
// places the std::c* I/O streams into one .cpp file and relieves the whole /// 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. /// program from having to have hundreds of static c'tor/d'tors for them.
// ///
llvm_ostream getErrorOutputStream(const char *DebugType); llvm_ostream getErrorOutputStream(const char *DebugType);
#ifdef NDEBUG #ifdef NDEBUG