diff options
author | Phillip Quiza <pilliq@mongodb.com> | 2013-09-13 10:15:59 -0400 |
---|---|---|
committer | Matt Kangas <matt.kangas@mongodb.com> | 2013-09-13 09:50:07 -0500 |
commit | eb22c8e590a60dde9adde997f34cddcea9d166f8 (patch) | |
tree | 7ed5a6bf8fcfc872a8f64f18109955f788f13b45 /src/mongo/client/dbclientinterface.h | |
parent | ea80923daacb18b922533720d6d6d008e524244a (diff) | |
download | mongo-eb22c8e590a60dde9adde997f34cddcea9d166f8.tar.gz |
SERVER-6219: Use ::mongo in macros
Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
Diffstat (limited to 'src/mongo/client/dbclientinterface.h')
-rw-r--r-- | src/mongo/client/dbclientinterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/client/dbclientinterface.h b/src/mongo/client/dbclientinterface.h index 864def44674..fb054f146f4 100644 --- a/src/mongo/client/dbclientinterface.h +++ b/src/mongo/client/dbclientinterface.h @@ -503,7 +503,7 @@ namespace mongo { /** Typically one uses the QUERY(...) macro to construct a Query object. Example: QUERY( "age" << 33 << "school" << "UCLA" ) */ -#define QUERY(x) mongo::Query( BSON(x) ) +#define QUERY(x) ::mongo::Query( BSON(x) ) // Useful utilities for namespaces /** @return the database name portion of an ns string */ |