mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
remove extra ';' [-Wpedantic]
This commit is contained in:
parent
91b42c8174
commit
fbab29c73a
@ -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> {
|
||||||
|
Loading…
Reference in New Issue
Block a user