From c79e435e00fd4fb49817a87c3c2b2647482c077b Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Thu, 15 Dec 2016 18:15:24 -0500 Subject: [PATCH] remove constexpr to help export void arg functions with Intel (#557) --- include/pybind11/cast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/cast.h b/include/pybind11/cast.h index e9bfc4a3..33630842 100644 --- a/include/pybind11/cast.h +++ b/include/pybind11/cast.h @@ -1262,7 +1262,7 @@ private: 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 bool load_impl_sequence(handle src, index_sequence) {