From 030d10e826b87f8cdf0816aa36b9a515fb7d064d Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Fri, 28 Oct 2016 01:23:42 +0200 Subject: [PATCH] minor style fix --- tests/test_numpy_array.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_numpy_array.cpp b/tests/test_numpy_array.cpp index d42232538..f8be72206 100644 --- a/tests/test_numpy_array.cpp +++ b/tests/test_numpy_array.cpp @@ -125,5 +125,5 @@ test_initializer numpy_array([](py::module &m) { } ); - sm.def("function_taking_uint64", [](uint64_t){ }); + sm.def("function_taking_uint64", [](uint64_t) { }); });