remove constexpr to help export void arg functions with Intel (#557)
diff --git a/include/pybind11/cast.h b/include/pybind11/cast.h
index e9bfc4a..3363084 100644
--- a/include/pybind11/cast.h
+++ b/include/pybind11/cast.h
@@ -1262,7 +1262,7 @@
return load_impl_sequence(args, indices{});
}
- static constexpr bool load_impl_sequence(handle, index_sequence<>) { return true; }
+ static bool load_impl_sequence(handle, index_sequence<>) { return true; }
template <size_t... Is>
bool load_impl_sequence(handle src, index_sequence<Is...>) {