diff options
author | David Storch <david.storch@10gen.com> | 2016-09-01 12:00:47 -0400 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2016-09-08 22:43:36 -0400 |
commit | 0f695019bd0b736e0aac0c510290175f0ec8f274 (patch) | |
tree | 0a7e318bbb2753e2ac082e799a940d2c62125e72 /src/mongo/shell | |
parent | f0df1d05b6098bfc01d0351e6867f044542d3b39 (diff) | |
download | mongo-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.h | 4 |
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 |