We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32a5f0b commit 15559d9Copy full SHA for 15559d9
CXX/Version.hxx
@@ -0,0 +1,12 @@
1
+//
2
+// CXX/Version.hxx
3
4
+#ifndef __PyCXX_version_hxx__
5
+#define __PyCXX_version_hxx__
6
+
7
+#define PYCXX_VERSION_MAJOR 5
8
+#define PYCXX_VERSION_MINOR 3
9
+#define PYCXX_VERSION_PATCH 3
10
+#define PYCXX_MAKEVERSION( major, minor, patch ) ((major<<16)|(minor<<8)|(patch))
11
+#define PYCXX_VERSION PYCXX_MAKEVERSION( PYCXX_VERSION_MAJOR, PYCXX_VERSION_MINOR, PYCXX_VERSION_PATCH )
12
+#endif
0 commit comments