commit | 7b8e032c26eafaf32935ce604239c962abd17e83 | [log] [tgz] |
---|---|---|
author | Wenzel Jakob <wenzel@inf.ethz.ch> | Fri Aug 28 17:49:15 2015 +0200 |
committer | Wenzel Jakob <wenzel@inf.ethz.ch> | Fri Aug 28 17:49:15 2015 +0200 |
tree | 5f947c23347ccfd80625066b57d024dfc2cf7c20 | |
parent | 43dbdfd0e738939e25b84deb60fc6b253a9a5ea2 [diff] [blame] |
added a few basic number types
diff --git a/example/example5.cpp b/example/example5.cpp index c601ed7..f6de5ba 100644 --- a/example/example5.cpp +++ b/example/example5.cpp
@@ -65,7 +65,7 @@ } int test_callback2(py::object func) { - py::object result = func.call("Hello", true, 5); + py::object result = func.call("Hello", 'x', true, 5); return result.cast<int>(); }