Skip to content
  • Kitware Robot's avatar
    Reindent using the reindentation script. · f830ff47
    Kitware Robot authored and David Gobbi's avatar David Gobbi committed
    This commit reindents the code with the following utility:
    Utilities/Maintenance/vtk-reindent-code.py
    
    This utility changes the positions of the braces so that they are no
    longer indented relative to the code block they reside in.
    
    The bash command line used was the following:
    
    for d in Charts Common Deprecated Domains Examples Filters GUISupport \
             Geovis IO Imaging Infovis Interaction Parallel Rendering \
             Testing Views Web Wrapping; do
      for e in cxx cxx.in txx txx.in hxx hxx.in h h.in c c.in; do
        find "${d}" -name "*.${e}" -exec \
          python Utilities/Maintenance/vtk_reindent_code.py {} +
      done
    done
    f830ff47