Skip to content

Compile MAJA in debug

Julien Osman requested to merge compile-debug into develop

Two problems prevent from compiling MAJA in debug:

  1. A patch on itkGaussianOperator.hxx changes a warning message to a debug message. But the debug message doesn't work in debug mode because itk::GaussianOperator doesn't inherit from itk::Object. It was fixed in a more recent version of ITK.
  2. A call to itkSetMacro in vnsDispatchZoneVectorImageFilter.h tries to print the parameter, but std::vector doesn't implement the << operator. It is better to write the Setter manually. This solution also allow to move the vector instead of copying it.

Merge request reports