summaryrefslogtreecommitdiff
path: root/src/mongo/bson/bsonobjbuilder.h
diff options
context:
space:
mode:
authorDavid Hatch <david.hatch@mongodb.com>2015-07-14 14:57:07 -0400
committerDavid Hatch <david.hatch@mongodb.com>2015-07-23 11:15:39 -0400
commitd065c380ffc76fef63cf2fe7bacc439134ab39eb (patch)
tree1e7b4630d2ca7a0477c9a8673b0c80c61e6c9d3d /src/mongo/bson/bsonobjbuilder.h
parentac6ebf125d320e1c5542ac91a86b3b159ae5945d (diff)
downloadmongo-d065c380ffc76fef63cf2fe7bacc439134ab39eb.tar.gz
SERVER-19391: Remove BSONObjBuilder::appendAsNumber.
Diffstat (limited to 'src/mongo/bson/bsonobjbuilder.h')
-rw-r--r--src/mongo/bson/bsonobjbuilder.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mongo/bson/bsonobjbuilder.h b/src/mongo/bson/bsonobjbuilder.h
index 6017df7a4e4..1cb8e7fbb51 100644
--- a/src/mongo/bson/bsonobjbuilder.h
+++ b/src/mongo/bson/bsonobjbuilder.h
@@ -303,11 +303,6 @@ public:
return *this;
}
- /** tries to append the data as a number
- * @return true if the data was able to be converted to a number
- */
- bool appendAsNumber(StringData fieldName, const std::string& data);
-
/** Append a BSON Object ID (OID type).
@deprecated Generally, it is preferred to use the append append(name, oid)
method for this.