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

@@ -50,9 +50,11 @@ public:
virtual bool run_bool() {
PYBIND11_OVERLOAD_PURE(
bool,
Example12,
run_bool
bool, /* Return type */
Example12, /* Parent class */
run_bool, /* Name of function */
/* This function has no arguments. The trailing comma
in the previous line is needed for some compilers */
);
throw std::runtime_error("this will never be reached");
}
@@ -61,8 +63,9 @@ public:
PYBIND11_OVERLOAD_PURE(
void, /* Return type */
Example12, /* Parent class */
pure_virtual /* Name of function */
/* This function has no arguments */
pure_virtual, /* Name of function */
/* This function has no arguments. The trailing comma
in the previous line is needed for some compilers */
);
}
};