We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55792c3 commit 9f16e2aCopy full SHA for 9f16e2a
doc/examples/fun1.cpp
@@ -1,7 +1,4 @@
1
#include <c2py/c2py.hpp>
2
3
-struct A {
4
- int i = 3;
5
- double x;
6
- std::string s;
7
-};
+int f(int x) { return -x;}
+int f(int x, int y) { return x + y;}
doc/reference/fnt_basic.rst
@@ -88,5 +88,5 @@ or
88
Template functions
89
------------------
90
91
-The instantiation of generic functions in discussed in :ref:`customize`.
+The instantiation of generic functions in discussed in :ref:`function_templates`.
92
0 commit comments