From c250ee51468abed6fb99c26ed11c0430a4f33ccf Mon Sep 17 00:00:00 2001 From: Dzhelil Rufat Date: Thu, 22 Sep 2016 14:44:11 -0700 Subject: [PATCH] Use more consistent indentation and typenames names. --- include/pybind11/numpy.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/pybind11/numpy.h b/include/pybind11/numpy.h index 81dfaea13..a3e66728a 100644 --- a/include/pybind11/numpy.h +++ b/include/pybind11/numpy.h @@ -911,10 +911,11 @@ detail::vectorize_helper vectorize(Retur return vectorize(f, f); } -template auto vectorize(func &&f) -> decltype( - vectorize(std::forward(f), (typename detail::remove_class::type::operator())>::type *) nullptr)) { - return vectorize(std::forward(f), (typename detail::remove_class::type::operator())>::type *) nullptr); +template +auto vectorize(Func &&f) -> decltype( + vectorize(std::forward(f), (typename detail::remove_class::type::operator())>::type *) nullptr)) { + return vectorize(std::forward(f), (typename detail::remove_class::type::operator())>::type *) nullptr); } NAMESPACE_END(pybind11)