make is_nothrow_forward_constructible_v static (warning from gcc 7)

This commit is contained in:
Bernd Amend 2021-05-22 18:44:03 +02:00
parent 8ee033cf89
commit 7aea27412d

View File

@ -257,7 +257,7 @@ namespace chaiscript {
};
template< class From, class To >
inline constexpr bool is_nothrow_forward_constructible_v
static inline constexpr bool is_nothrow_forward_constructible_v
= is_nothrow_forward_constructible<From, To>::value;
template<typename Container, typename ... T>