summaryrefslogtreecommitdiff
path: root/src/mongo/util/text.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 12:46:52 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 14:43:05 -0400
commitf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (patch)
tree6436772fbceb28f07bbfaee528d700159beb0cec /src/mongo/util/text.h
parentc10e8282a7af38f8512e911a14889e14df8a2c6a (diff)
downloadmongo-f2bfd36a6f3eb7e7e2587268be3cc12636703d42.tar.gz
SERVER-13256: Remove pch - qualify std in headers
Diffstat (limited to 'src/mongo/util/text.h')
-rw-r--r--src/mongo/util/text.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/util/text.h b/src/mongo/util/text.h
index ca8ab42d449..ebcaa332975 100644
--- a/src/mongo/util/text.h
+++ b/src/mongo/util/text.h
@@ -39,7 +39,7 @@ namespace mongo {
class StringSplitter {
public:
- /** @param big the string to be split
+ /** @param big the std::string to be split
@param splitter the delimiter
*/
StringSplitter( const char * big , const char * splitter )
@@ -49,7 +49,7 @@ namespace mongo {
/** @return true if more to be taken via next() */
bool more() const { return _big[0] != 0; }
- /** get next split string fragment */
+ /** get next split std::string fragment */
std::string next();
void split( std::vector<std::string>& l );
@@ -66,7 +66,7 @@ namespace mongo {
};
/* This doesn't defend against ALL bad UTF8, but it will guarantee that the
- * string can be converted to sequence of codepoints. However, it doesn't
+ * std::string can be converted to sequence of codepoints. However, it doesn't
* guarantee that the codepoints are valid.
*/
bool isValidUTF8(const char *s);