quenched -pendantic warnings (closes #167)

This commit is contained in:
Wenzel Jakob
2016-04-18 10:34:27 +02:00
parent b2b44a9af8
commit 1dc940d4b7
3 changed files with 10 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ struct Base {
struct DispatchIssue : Base {
virtual void dispatch(void) const {
PYBIND11_OVERLOAD_PURE(void, Base, dispatch);
PYBIND11_OVERLOAD_PURE(void, Base, dispatch, /* no arguments */);
}
};