We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76af1ed commit 890280aCopy full SHA for 890280a
src/binding/python/Series.cpp
@@ -387,7 +387,10 @@ not possible once it has been closed.
387
std::tuple<py::object, std::string>,
388
std::tuple<py::object, py::object>
389
#endif
390
- >::template call(cl);
+ >::template call<py::class_<Series, Attributable> &>(cl);
391
+ // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
392
+ // need to explicitly state template parameters, otherwise Clang on
393
+ // Windows does not understand that it really is a template
394
395
cl.def("__bool__", &Series::operator bool)
396
.def("__len__", [](Series const &s) { return s.iterations.size(); })
0 commit comments