mirror of
https://github.com/pybind/pybind11.git
synced 2025-02-28 22:02:43 +00:00
Avoid explicit false
in static_assert()
.
This commit is contained in:
parent
58e5a09670
commit
882d20f57f
@ -1372,7 +1372,7 @@ template <typename D>
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
str_attr_accessor object_api<D>::attr_with_type_hint(const char *key) const {
|
str_attr_accessor object_api<D>::attr_with_type_hint(const char *key) const {
|
||||||
#if !defined(__cpp_inline_variables)
|
#if !defined(__cpp_inline_variables)
|
||||||
static_assert(false,
|
static_assert(!std::is_same<T, T>::value,
|
||||||
"C++17 feature __cpp_inline_variables not available: "
|
"C++17 feature __cpp_inline_variables not available: "
|
||||||
"https://en.cppreference.com/w/cpp/language/static#Static_data_members");
|
"https://en.cppreference.com/w/cpp/language/static#Static_data_members");
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user