diff --git a/bson/bson.h b/bson/bson.h index 5463175fccf..3d9283160e0 100644 --- a/bson/bson.h +++ b/bson/bson.h @@ -45,6 +45,7 @@ #include #include #include +#include "util/builder.h" namespace bson { @@ -55,7 +56,7 @@ namespace bson { public: assertion( unsigned u , const string& s ) : id( u ) , msg( s ){ - StringBuilder ss; + mongo::StringBuilder ss; ss << "BsonAssertion id: " << u << " " << s; full = ss.str(); }