/******************************************************************************* * * 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 . * ******************************************************************************/ #ifndef TRIQS_C14_FIX_H #define TRIQS_C14_FIX_H #include //#include #include // a few that will be C++14, use in advance.... namespace std { namespace c14 { // helpers template using conditional_t = typename conditional::type; template using remove_reference_t = typename remove_reference::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)); }; template std::unique_ptr make_unique(Args&&... args) { return std::unique_ptr(new T(std::forward(args)...)); } // a little helper class to wait for the correction that tuple construct is NOT explicit template class tuple : public std::tuple { public : template tuple(Args2 && ... args2) : std::tuple (std::forward(args2)...){} }; } // minimal hack to get the metaprogramming work with this tuple too.... template auto get(c14::tuple const & t) DECL_AND_RETURN( std::get(static_cast>(t))); template struct tuple_size>: tuple_size>{}; } #endif