summarylogtreecommitdiffstats
path: root/using-std-string.patch
blob: 432af52ddf15d3ab7069e5484e0a0d54505d7d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/src/mongo/db/repl/master_slave.cpp b/src/mongo/db/repl/master_slave.cpp
index 05faad1..7fbc062 100644
--- a/src/mongo/db/repl/master_slave.cpp
+++ b/src/mongo/db/repl/master_slave.cpp
@@ -81,6 +81,7 @@ using std::set;
 using std::stringstream;
 using std::unique_ptr;
 using std::vector;
+using std::string;
 
 namespace mongo {
 namespace repl {
diff --git a/src/mongo/shell/bench.cpp b/src/mongo/shell/bench.cpp
index 040002f..cb0f6f4 100644
--- a/src/mongo/shell/bench.cpp
+++ b/src/mongo/shell/bench.cpp
@@ -78,6 +78,7 @@ namespace mongo {
 using std::unique_ptr;
 using std::cout;
 using std::map;
+using std::string;
 
 const std::map<OpType, std::string> opTypeName{{OpType::NONE, "none"},
                                                {OpType::NOP, "nop"},