summaryrefslogtreecommitdiff
path: root/src/mongo/bson/mutable
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/bson/mutable
parentc10e8282a7af38f8512e911a14889e14df8a2c6a (diff)
downloadmongo-f2bfd36a6f3eb7e7e2587268be3cc12636703d42.tar.gz
SERVER-13256: Remove pch - qualify std in headers
Diffstat (limited to 'src/mongo/bson/mutable')
-rw-r--r--src/mongo/bson/mutable/document.h2
-rw-r--r--src/mongo/bson/mutable/element.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/bson/mutable/document.h b/src/mongo/bson/mutable/document.h
index 0ff5fe8c2ef..2b73b96737a 100644
--- a/src/mongo/bson/mutable/document.h
+++ b/src/mongo/bson/mutable/document.h
@@ -313,7 +313,7 @@ namespace mutablebson {
/** Create a new double Element with the given value and field name. */
Element makeElementDouble(const StringData& fieldName, double value);
- /** Create a new string Element with the given value and field name. */
+ /** Create a new std::string Element with the given value and field name. */
Element makeElementString(const StringData& fieldName, const StringData& value);
/** Create a new empty object Element with the given field name. */
diff --git a/src/mongo/bson/mutable/element.h b/src/mongo/bson/mutable/element.h
index de7cc3700ad..fa94c63035c 100644
--- a/src/mongo/bson/mutable/element.h
+++ b/src/mongo/bson/mutable/element.h
@@ -283,7 +283,7 @@ namespace mutablebson {
/** Get the value from a double valued Element. */
inline double getValueDouble() const;
- /** Get the value from a string valued Element. */
+ /** Get the value from a std::string valued Element. */
inline StringData getValueString() const;
/** Get the value from an object valued Element. Note that this may not always be
@@ -508,7 +508,7 @@ namespace mutablebson {
/** Append the provided double value as a new field with the provided name. */
Status appendDouble(const StringData& fieldName, double value);
- /** Append the provided string value as a new field with the provided name. */
+ /** Append the provided std::string value as a new field with the provided name. */
Status appendString(const StringData& fieldName, const StringData& value);
/** Append the provided object as a new field with the provided name. The data in