diff --git a/src/blockforest/python/Exports.cpp b/src/blockforest/python/Exports.cpp index fcc28cf6b6536153f5950f40b40f288a2689a343..08873381e321bf8525bf3a5f39916c17233d2532 100644 --- a/src/blockforest/python/Exports.cpp +++ b/src/blockforest/python/Exports.cpp @@ -288,7 +288,7 @@ std::string printSetupBlock(const SetupBlock & b ) void exportBlockForest() { - class_< StructuredBlockForest, + class_< StructuredBlockForest, //NOLINT shared_ptr<StructuredBlockForest>, bases<StructuredBlockStorage>, boost::noncopyable > ( "StructuredBlockForest", no_init ); diff --git a/src/python_coupling/CreateConfig.cpp b/src/python_coupling/CreateConfig.cpp index 461a82a38bc70a63f3df14040ce4ef390102f7fb..0a4416c3306b05d4268f01aaeba4ffa3568e033d 100644 --- a/src/python_coupling/CreateConfig.cpp +++ b/src/python_coupling/CreateConfig.cpp @@ -84,7 +84,7 @@ namespace python_coupling { { public: PythonMultipleConfigGenerator( bp::stl_input_iterator< bp::dict > iterator ) //NOLINT - : iter_( iterator ), firstTime_(true) + : iter_( iterator ), firstTime_(true) //NOLINT {} shared_ptr<Config> next() override diff --git a/src/python_coupling/Manager.cpp b/src/python_coupling/Manager.cpp index 13b401b675cdc706bb2fc861025048cefaa77619..b7af694e847bb6cf068ee799529d84e2672f80b6 100644 --- a/src/python_coupling/Manager.cpp +++ b/src/python_coupling/Manager.cpp @@ -53,7 +53,7 @@ Manager::Manager() { } -Manager::~Manager( ) +Manager::~Manager( ) //NOLINT { // To work reliably this would have to be called at the end of the // main function. At this position this leads to a segfault in some cases