From 0f695019bd0b736e0aac0c510290175f0ec8f274 Mon Sep 17 00:00:00 2001 From: David Storch Date: Thu, 1 Sep 2016 12:00:47 -0400 Subject: 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. --- src/mongo/stdx/unordered_map.h | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/mongo/stdx/unordered_map.h (limited to 'src/mongo/stdx/unordered_map.h') diff --git a/src/mongo/stdx/unordered_map.h b/src/mongo/stdx/unordered_map.h new file mode 100644 index 00000000000..59fba445074 --- /dev/null +++ b/src/mongo/stdx/unordered_map.h @@ -0,0 +1,47 @@ +/** + * Copyright (C) 2016 MongoDB Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + * As a special exception, the copyright holders give permission to link the + * code of portions of this program with the OpenSSL library under certain + * conditions as described in each individual source file and distribute + * linked combinations including the program with the OpenSSL library. You + * must comply with the GNU Affero General Public License in all respects for + * all of the code used other than as permitted herein. If you modify file(s) + * with this exception, you may extend this exception to your version of the + * file(s), but you are not obligated to do so. If you do not wish to do so, + * delete this exception statement from your version. If you delete this + * exception statement from all source files in the program, then also delete + * it in the license file. + */ + +#pragma once + +#if defined(_WIN32) +#include +#else +#include +#endif + +namespace mongo { +namespace stdx { + +#if defined(_WIN32) +using ::boost::unordered_map; // NOLINT +#else +using ::std::unordered_map; // NOLINT +#endif + +} // namespace stdx +} // namespace mongo -- cgit v1.2.1