[Insight-developers] ITKModular: include file regression

Bill Lorensen bill.lorensen at gmail.com
Mon Apr 4 12:42:39 EDT 2011


Folks,

I'm updating Slicer4 to work with ITK Modular.

This include fails:
#include "vxl/vcl/vcl_complex.h"

I had to change it to:
#include "vcl_complex.h"

Which means I need this code in Slicer4:
#if ITK_VERSION_MAJOR < 4
#include "vxl/vcl/vcl_complex.h"
#else
#include "vcl_complex.h"
#endif


I did not see a migration doc for this. Was this done purposely?

Bill
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.itk.org/mailman/private/insight-developers/attachments/20110404/c484310b/attachment.htm>


More information about the Insight-developers mailing list