Add missing #include.

Add missing copyright.
This commit is contained in:
jzmaddock
2022-04-15 18:26:42 +01:00
parent 22fc50f36d
commit defcaf7f9b
3 changed files with 14 additions and 1 deletions

View File

@ -15,7 +15,7 @@
#include <boost/type_traits/integral_constant.hpp>
#include <boost/type_traits/intrinsics.hpp>
#if (defined(BOOST_MSVC) || defined(BOOST_INTEL))
#if (defined(BOOST_MSVC) || defined(BOOST_INTEL) || defined(BOOST_NO_CXX11_NOEXCEPT) || defined(BOOST_NO_CXX11_RVALUE_REFERENCES))
#include <boost/type_traits/has_trivial_assign.hpp>
#endif
#if !defined(BOOST_HAS_NOTHROW_ASSIGN)

View File

@ -1,3 +1,10 @@
// (C) John Maddock 2022.
// Use, modification and distribution are subject to 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).
//
// See http://www.boost.org/libs/type_traits for most recent version including documentation.
module;
#ifdef _MSC_VER

View File

@ -1,3 +1,9 @@
// (C) John Maddock 2022.
// Use, modification and distribution are subject to 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).
//
// See http://www.boost.org/libs/type_traits for most recent version including documentation.
#include <complex>