From fb0e2e5dac4da09fd2b556dc5f949a643bb753ab Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Fri, 1 Jul 2016 14:54:24 +0200 Subject: [PATCH] minor formatting fix --- example/issues.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/example/issues.cpp b/example/issues.cpp index d75da1cef..83147592f 100644 --- a/example/issues.cpp +++ b/example/issues.cpp @@ -126,11 +126,11 @@ void init_issues(py::module &m) { auto call_f = [](A *a) { a->f(); }; - pybind11::class_, PyA>(m2, "A") - .def(py::init<>()) - .def("f", &A::f); + pybind11::class_, PyA>(m2, "A") + .def(py::init<>()) + .def("f", &A::f); - m2.def("call_f", call_f); + m2.def("call_f", call_f); try { py::class_(m2, "Placeholder");