summaryrefslogtreecommitdiff
path: root/src/mongo/shell
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2016-09-01 12:00:47 -0400
committerDavid Storch <david.storch@10gen.com>2016-09-08 22:43:36 -0400
commit0f695019bd0b736e0aac0c510290175f0ec8f274 (patch)
tree0a7e318bbb2753e2ac082e799a940d2c62125e72 /src/mongo/shell
parentf0df1d05b6098bfc01d0351e6867f044542d3b39 (diff)
downloadmongo-0f695019bd0b736e0aac0c510290175f0ec8f274.tar.gz
SERVER-25865 stdx::unordered_map and stdx::unordered_set
On Windows, these are aliases for boost containers. On other platforms they are aliases for std containers.
Diffstat (limited to 'src/mongo/shell')
-rw-r--r--src/mongo/shell/shell_utils_launcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/shell/shell_utils_launcher.h b/src/mongo/shell/shell_utils_launcher.h
index a5d3543921c..3167b9a28b3 100644
--- a/src/mongo/shell/shell_utils_launcher.h
+++ b/src/mongo/shell/shell_utils_launcher.h
@@ -89,8 +89,8 @@ public:
void getRegisteredPids(std::vector<ProcessId>& pids);
private:
- std::unordered_map<int, ProcessId> _portToPidMap;
- std::unordered_map<ProcessId, int> _outputs;
+ stdx::unordered_map<int, ProcessId> _portToPidMap;
+ stdx::unordered_map<ProcessId, int> _outputs;
mutable stdx::recursive_mutex _mutex;
#ifdef _WIN32