/******************************************************************************* * * TRIQS: a Toolbox for Research in Interacting Quantum Systems * * Copyright (C) 2011 by O. Parcollet * * TRIQS is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * TRIQS 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 General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * TRIQS. If not, see . * ******************************************************************************/ #pragma once #include #include #include "./macros.hpp" // a few that will be C++14, use in advance.... namespace std { namespace c14 { // helpers template using conditional_t = typename conditional::type; template using result_of_t = typename result_of::type; template using remove_reference_t = typename remove_reference::type; template using add_const_t = typename add_const::type; template using remove_const_t = typename remove_const::type; template using decay_t = typename decay::type; template using enable_if_t = typename enable_if::type; // use simply std::c14::plus<>() ... template struct plus: std::plus{}; template<> struct plus { template auto operator()( T&& t, U&& u) const DECL_AND_RETURN(std::forward(t) + std::forward(u)); }; // use simply std::c14::plus<>() ... template struct greater: std::greater{}; template<> struct greater { template auto operator()( T&& t, U&& u) const DECL_AND_RETURN(std::forward(t) > std::forward(u)); }; template struct less: std::less{}; template<> struct less { template auto operator()( T&& t, U&& u) const DECL_AND_RETURN(std::forward(t) < std::forward(u)); }; template std::unique_ptr make_unique(Args&&... args) { return std::unique_ptr(new T(std::forward(args)...)); } } } namespace std14 { using namespace std::c14; }