consistent macro naming throughout the project

This commit is contained in:
Wenzel Jakob
2015-10-18 16:48:30 +02:00
parent 041a8656af
commit b1b714023a
18 changed files with 149 additions and 149 deletions

View File

@@ -39,7 +39,7 @@ public:
virtual int run(int value) {
/* Generate wrapping code that enables native function overloading */
PYBIND_OVERLOAD(
PYBIND11_OVERLOAD(
int, /* Return type */
Example12, /* Parent class */
run, /* Name of function */
@@ -48,7 +48,7 @@ public:
}
virtual void pure_virtual() {
PYBIND_OVERLOAD_PURE(
PYBIND11_OVERLOAD_PURE(
void, /* Return type */
Example12, /* Parent class */
pure_virtual /* Name of function */