1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-20 17:55:15 +03:00
aports/testing/vera++/fix-not-declared-in-this-scope.patch
Marian Buschsieweke 1b897a9764 tests/vera++: new aport
http://bitbucket.org/verateam/vera
tool for verification, analysis and transformation of C++ source code
2021-11-17 17:51:29 +00:00

11 lines
324 B
Diff

--- a/src/plugins/python/PythonInterpreter.cpp
+++ b/src/plugins/python/PythonInterpreter.cpp
@@ -133,7 +133,7 @@
{
try
{
- PyImport_AppendInittab("vera", initvera);
+ PyImport_AppendInittab("vera", PyInit_vera);
Py_Initialize();
py::object main_module = py::import("__main__");