We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb95df3 commit 83784c7Copy full SHA for 83784c7
1 file changed
include/xtensor/core/xvectorize.hpp
@@ -54,14 +54,9 @@ namespace xt
54
template <class F, class R, class... Args>
55
xvectorizer<F, R> vectorize(F&& f, R (*)(Args...));
56
57
-// Workaround for Visual Studio 15.7.1.
58
-// Error C2668 (ambiguous call to overloaded function) mistaking a declarations
59
-// for the definition of another overload.
60
-#ifndef _MSC_VER
61
template <class F>
62
auto vectorize(F&& f)
63
-> decltype(vectorize(std::forward<F>(f), std::declval<detail::get_function_type<F>*>()));
64
-#endif
65
66
/******************************
67
* xvectorizer implementation *
0 commit comments