Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
10e62e16
Commit
10e62e16
authored
Oct 15, 2015
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed missing semicolon in documentation
parent
b456ec78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
docs/advanced.rst
+1
-1
docs/basics.rst
+1
-1
docs/classes.rst
+1
-1
No files found.
docs/advanced.rst
View file @
10e62e16
...
...
@@ -10,7 +10,7 @@ present:
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11
;
Operator overloading
====================
...
...
docs/basics.rst
View file @
10e62e16
...
...
@@ -85,7 +85,7 @@ a file named :file:`example.cpp` with the following contents:
return i + j;
}
namespace py = pybind11
namespace py = pybind11
;
PYBIND_PLUGIN(example) {
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:
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11
;
PYBIND_PLUGIN(example) {
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