[Insight-developers] Dynamic cast - don't do it...

Will Schroeder will.schroeder@kitware.com
Fri, 26 Apr 2002 08:58:57 -0400


Hi Dean-

dynamic_cast is not allowed on many C++ compilers without specifically 
enabling RTTI. Since we don't do this by default, vtkImagePlaneWidget is 
not compiling (the SGI compiler broke).

I'm going to fix this with vtk's SafeDownCast(). Please do not check 
anything else in until we stabilize the dashboard. We are serious about 
getting everything green again.

Will