summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-05 10:19:18 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-05 10:19:18 -0400
commitf49018bca41048d8a4f729ccc0489ea6be073a20 (patch)
tree391cf774c8416fb7ef607be1788c5df5669d9ba5 /src/mongo/db/ops
parentebd21ec84d6d8c30f0634a5cadad7af1bba1783a (diff)
downloadmongo-f49018bca41048d8a4f729ccc0489ea6be073a20.tar.gz
SERVER-23548 Remove More VS2013 Workarounds
Diffstat (limited to 'src/mongo/db/ops')
-rw-r--r--src/mongo/db/ops/write_ops_exec.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/ops/write_ops_exec.h b/src/mongo/db/ops/write_ops_exec.h
index 37ab8dd3ee1..49d3d2e0cf1 100644
--- a/src/mongo/db/ops/write_ops_exec.h
+++ b/src/mongo/db/ops/write_ops_exec.h
@@ -60,10 +60,8 @@ struct WriteResult {
* the last op reported in results. Processing always stops at the first SCE and nothing is
* placed in results for the op that triggered it. The whole exception is copied here because it
* contains additional data not included in the Status.
- *
- * TODO convert to std::unique_ptr once we are on MSVC2015.
*/
- std::shared_ptr<SendStaleConfigException> staleConfigException;
+ std::unique_ptr<SendStaleConfigException> staleConfigException;
};