Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
10e62e16
Commit
10e62e16
authored
Oct 15, 2015
by
Wenzel Jakob
Browse files
fixed missing semicolon in documentation
parent
b456ec78
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
docs/advanced.rst
docs/advanced.rst
+1
-1
docs/basics.rst
docs/basics.rst
+1
-1
docs/classes.rst
docs/classes.rst
+1
-1
No files found.
docs/advanced.rst
View file @
10e62e16
...
@@ -10,7 +10,7 @@ present:
...
@@ -10,7 +10,7 @@ present:
#include <pybind11/pybind11.h>
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11
;
Operator overloading
Operator overloading
====================
====================
...
...
docs/basics.rst
View file @
10e62e16
...
@@ -85,7 +85,7 @@ a file named :file:`example.cpp` with the following contents:
...
@@ -85,7 +85,7 @@ a file named :file:`example.cpp` with the following contents:
return i + j;
return i + j;
}
}
namespace py = pybind11
namespace py = pybind11
;
PYBIND_PLUGIN(example) {
PYBIND_PLUGIN(example) {
py::module m("example", "pybind11 example plugin");
py::module m("example", "pybind11 example plugin");
...
...
docs/classes.rst
View file @
10e62e16
...
@@ -25,7 +25,7 @@ The binding code for ``Pet`` looks as follows:
...
@@ -25,7 +25,7 @@ The binding code for ``Pet`` looks as follows:
#include <pybind11/pybind11.h>
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11
;
PYBIND_PLUGIN(example) {
PYBIND_PLUGIN(example) {
py::module m("example", "pybind11 example plugin");
py::module m("example", "pybind11 example plugin");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment