From fbab29c73a91234d7992aefb69d40c50c56d5ccf Mon Sep 17 00:00:00 2001 From: Marcin Wojdyr Date: Mon, 4 Sep 2017 18:37:16 +0100 Subject: [PATCH] remove extra ';' [-Wpedantic] --- include/pybind11/pybind11.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/pybind11.h b/include/pybind11/pybind11.h index fbde332a5..285fc5346 100644 --- a/include/pybind11/pybind11.h +++ b/include/pybind11/pybind11.h @@ -1335,7 +1335,7 @@ Ret init(CFunc &&c, AFunc &&a) { template detail::initimpl::pickle_factory pickle(GetState &&g, SetState &&s) { return {std::forward(g), std::forward(s)}; -}; +} /// Binds C++ enumerations and enumeration classes to Python template class enum_ : public class_ {