summaryrefslogtreecommitdiff
path: root/src/mongo/bson/util
diff options
context:
space:
mode:
authorAdam Chelminski <adam.chelminski@mongodb.com>2016-08-15 10:48:29 -0400
committerAdam Chelminski <adam.chelminski@mongodb.com>2016-08-15 10:49:01 -0400
commit9175ab505d970a6e97733a28e16496426d10f3ee (patch)
tree898fc0191b977c0e69b7a2c731f9986ad4b1ef5d /src/mongo/bson/util
parentd19d5cdb3a2dd6905361545239c7c37d07cf5aba (diff)
downloadmongo-9175ab505d970a6e97733a28e16496426d10f3ee.tar.gz
SERVER-13367 Specialize operator<< for BSONType for std::ostream, LogstreamBuilder, and StringBuilder
Diffstat (limited to 'src/mongo/bson/util')
-rw-r--r--src/mongo/bson/util/builder.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mongo/bson/util/builder.h b/src/mongo/bson/util/builder.h
index 2cce0d93ad5..e6d29ceb175 100644
--- a/src/mongo/bson/util/builder.h
+++ b/src/mongo/bson/util/builder.h
@@ -41,6 +41,7 @@
#include "mongo/base/data_view.h"
#include "mongo/base/disallow_copying.h"
#include "mongo/base/string_data.h"
+#include "mongo/bson/bsontypes.h"
#include "mongo/bson/inline_decls.h"
#include "mongo/platform/decimal128.h"
#include "mongo/stdx/type_traits.h"
@@ -411,6 +412,10 @@ public:
append(str);
return *this;
}
+ StringBuilderImpl& operator<<(BSONType type) {
+ append(typeName(type));
+ return *this;
+ }
void appendDoubleNice(double x) {
const int prev = _buf.l;