Commit c79e435e by Lori A. Burns Committed by Wenzel Jakob

remove constexpr to help export void arg functions with Intel (#557)

parent 20291712
...@@ -1262,7 +1262,7 @@ private: ...@@ -1262,7 +1262,7 @@ private:
return load_impl_sequence(args, indices{}); 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> template <size_t... Is>
bool load_impl_sequence(handle src, index_sequence<Is...>) { bool load_impl_sequence(handle src, index_sequence<Is...>) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment