diff --git a/include/mapnik/cxx11_support.hpp b/include/mapnik/cxx11_support.hpp deleted file mode 100644 index f298a2074..000000000 --- a/include/mapnik/cxx11_support.hpp +++ /dev/null @@ -1,43 +0,0 @@ -/***************************************************************************** - * - * This file is part of Mapnik (c++ mapping toolkit) - * - * Copyright (C) 2021 Artem Pavlenko - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - *****************************************************************************/ - -#ifndef MAPNIK_CXX11_SUPPORT_HPP -#define MAPNIK_CXX11_SUPPORT_HPP - -#include - -namespace mapnik { -namespace detail { - -template -using conditional_t = typename std::conditional::type; - -template -using decay_t = typename std::decay::type; - -template -using enable_if_t = typename std::enable_if::type; - -} // namespace detail -} // namespace mapnik - -#endif // MAPNIK_CXX11_SUPPORT_HPP diff --git a/include/mapnik/value/types.hpp b/include/mapnik/value/types.hpp index a69c01fdb..39932125b 100644 --- a/include/mapnik/value/types.hpp +++ b/include/mapnik/value/types.hpp @@ -25,9 +25,8 @@ // mapnik #include -#include #include - +#include #include MAPNIK_DISABLE_WARNING_PUSH @@ -161,13 +160,13 @@ namespace detail { // value_double if T is a floating-point type // T && otherwise -template > +template > using mapnik_value_type_t = - conditional_t< + std::conditional_t< std::is_same::value, value_bool, - conditional_t< + std::conditional_t< std::is_integral
::value, value_integer, - conditional_t< + std::conditional_t< std::is_floating_point
::value, value_double, T && >>>;