Correctly extract the ValueType from a VTSDNode.
[oota-llvm.git] / lib / Support / StringExtras.cpp
index 2ce234970a9dd75b3d51d08bce99f6296d6de5e2..8a276b56c21f1dd3fe5e671f00130d3ec77dcdd8 100644 (file)
@@ -59,8 +59,10 @@ void llvm::SplitString(const std::string &Source,
 
 
 /// UnescapeString - Modify the argument string, turning two character sequences
-/// like '\\' 'n' into '\n'.  This handles: \e \a \b \f \n \r \t \v \' \\ and
+/// @verbatim
+/// like '\\' 'n' into '\n'.  This handles: \e \a \b \f \n \r \t \v \' \ and
 /// \num (where num is a 1-3 byte octal value).
+/// @endverbatim
 void llvm::UnescapeString(std::string &Str) {
   for (unsigned i = 0; i != Str.size(); ++i) {
     if (Str[i] == '\\' && i != Str.size()-1) {