Skip to content
Snippets Groups Projects
Commit 6f2acb51 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[CLANG-TIDY] various fixes

If you are familiar with the coupling feel free to remove the NOLINTs!
parent 4d534f68
No related merge requests found
...@@ -288,7 +288,7 @@ std::string printSetupBlock(const SetupBlock & b ) ...@@ -288,7 +288,7 @@ std::string printSetupBlock(const SetupBlock & b )
void exportBlockForest() void exportBlockForest()
{ {
class_< StructuredBlockForest, class_< StructuredBlockForest, //NOLINT
shared_ptr<StructuredBlockForest>, shared_ptr<StructuredBlockForest>,
bases<StructuredBlockStorage>, boost::noncopyable > ( "StructuredBlockForest", no_init ); bases<StructuredBlockStorage>, boost::noncopyable > ( "StructuredBlockForest", no_init );
......
...@@ -84,7 +84,7 @@ namespace python_coupling { ...@@ -84,7 +84,7 @@ namespace python_coupling {
{ {
public: public:
PythonMultipleConfigGenerator( bp::stl_input_iterator< bp::dict > iterator ) //NOLINT PythonMultipleConfigGenerator( bp::stl_input_iterator< bp::dict > iterator ) //NOLINT
: iter_( iterator ), firstTime_(true) : iter_( iterator ), firstTime_(true) //NOLINT
{} {}
shared_ptr<Config> next() override shared_ptr<Config> next() override
......
...@@ -53,7 +53,7 @@ Manager::Manager() ...@@ -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 // 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 // main function. At this position this leads to a segfault in some cases
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment