remove extra ';' [-Wpedantic]

This commit is contained in:
Marcin Wojdyr 2017-09-04 18:37:16 +01:00 committed by Jason Rhinelander
parent 91b42c8174
commit fbab29c73a
1 changed files with 1 additions and 1 deletions

View File

@ -1335,7 +1335,7 @@ Ret init(CFunc &&c, AFunc &&a) {
template <typename GetState, typename SetState>
detail::initimpl::pickle_factory<GetState, SetState> pickle(GetState &&g, SetState &&s) {
return {std::forward<GetState>(g), std::forward<SetState>(s)};
};
}
/// Binds C++ enumerations and enumeration classes to Python
template <typename Type> class enum_ : public class_<Type> {