summaryrefslogtreecommitdiff
path: root/src/mongo/client/syncclusterconnection.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-02-04 18:11:20 -0500
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-02-20 17:09:56 -0500
commit3211addd3426161d7ee1f5cc8d191418a013018d (patch)
tree4a649bdef64d819249110aed65a73d5320dae09f /src/mongo/client/syncclusterconnection.h
parent56202c537bfa6de56ca98d8caa04eaf095b7ef62 (diff)
downloadmongo-3211addd3426161d7ee1f5cc8d191418a013018d.tar.gz
SERVER-13339 Cleanup some SConscript and includes
Diffstat (limited to 'src/mongo/client/syncclusterconnection.h')
-rw-r--r--src/mongo/client/syncclusterconnection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/client/syncclusterconnection.h b/src/mongo/client/syncclusterconnection.h
index 30790440478..d9f5ab3f2c8 100644
--- a/src/mongo/client/syncclusterconnection.h
+++ b/src/mongo/client/syncclusterconnection.h
@@ -53,7 +53,7 @@ namespace mongo {
* The class checks if a command is read or write style, and sends to a single
* node if a read lock command and to all in two phases with a write style command.
*/
- class MONGO_CLIENT_API SyncClusterConnection : public DBClientBase {
+ class SyncClusterConnection : public DBClientBase {
public:
using DBClientBase::query;
@@ -195,7 +195,7 @@ namespace mongo {
int batchSize ) = 0;
};
- class MONGO_CLIENT_API UpdateNotTheSame : public UserException {
+ class UpdateNotTheSame : public UserException {
public:
UpdateNotTheSame( int code , const std::string& msg , const std::vector<std::string>& addrs , const std::vector<BSONObj>& lastErrors )
: UserException( code , msg ) , _addrs( addrs ) , _lastErrors( lastErrors ) {