Commit fbab29c7 by Marcin Wojdyr Committed by Jason Rhinelander

remove extra ';' [-Wpedantic]

parent 91b42c81
...@@ -1335,7 +1335,7 @@ Ret init(CFunc &&c, AFunc &&a) { ...@@ -1335,7 +1335,7 @@ Ret init(CFunc &&c, AFunc &&a) {
template <typename GetState, typename SetState> template <typename GetState, typename SetState>
detail::initimpl::pickle_factory<GetState, SetState> pickle(GetState &&g, SetState &&s) { detail::initimpl::pickle_factory<GetState, SetState> pickle(GetState &&g, SetState &&s) {
return {std::forward<GetState>(g), std::forward<SetState>(s)}; return {std::forward<GetState>(g), std::forward<SetState>(s)};
}; }
/// Binds C++ enumerations and enumeration classes to Python /// Binds C++ enumerations and enumeration classes to Python
template <typename Type> class enum_ : public class_<Type> { template <typename Type> class enum_ : public class_<Type> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment