/*============================================================================= Copyright (c) 2015 Louis Dionne Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include #ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS #include #include struct Dummy { }; // Make sure deque's constructor is SFINAE-friendly. static_assert(!std::is_constructible, Dummy const&>::value, ""); #endif