diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-02-04 18:11:20 -0500 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-02-20 17:09:56 -0500 |
commit | 3211addd3426161d7ee1f5cc8d191418a013018d (patch) | |
tree | 4a649bdef64d819249110aed65a73d5320dae09f /src/mongo/client/syncclusterconnection.h | |
parent | 56202c537bfa6de56ca98d8caa04eaf095b7ef62 (diff) | |
download | mongo-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.h | 4 |
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 ) { |