Skip to content
Snippets Groups Projects
  1. Sep 16, 2016
  2. Sep 15, 2016
  3. Sep 09, 2016
  4. Sep 02, 2016
  5. Sep 01, 2016
  6. Aug 12, 2016
  7. Aug 09, 2016
  8. Aug 04, 2016
  9. Jul 29, 2016
  10. Jul 20, 2016
  11. Jul 13, 2016
  12. Jul 12, 2016
  13. Jul 11, 2016
  14. Jul 05, 2016
  15. Jul 01, 2016
  16. Jun 30, 2016
  17. Jun 29, 2016
  18. Jun 28, 2016
  19. Jun 27, 2016
  20. Jun 24, 2016
  21. Jun 23, 2016
  22. Jun 20, 2016
  23. Jun 16, 2016
    • Guillaume Pasero's avatar
      TEST: use real data for app testing · c16395f5
      Guillaume Pasero authored
      c16395f5
    • Guillaume Pasero's avatar
      ENH: add reprojection of input vectors · 0e34019b
      Guillaume Pasero authored
      0e34019b
    • Manuel Grizonnet's avatar
      STYLE: Use ITK_NULLPTR to utilize c++11 features · 0f26e689
      Manuel Grizonnet authored
          Where available, use c++11 features to identify
          potential nullptr usage errors.
      
          python run-clang-tidy.py -clang-tidy-binary ~/software/clang+llvm-3.8.0-x86_64-linux-gnu-ubuntu-14.04/bin/clang-tidy -checks=-*,modernize-use-nullptr -header-filter=/home/grizonnetm/projets/otb/src/OTB/Modules/.*/.*/include/.* -j8 -fix -p ~/projets/otb/bin/release/OTB-clang3.8/ ~/projets/otb/src/OTB/Modules/*/*/src/*.cxx ~/projets/otb/src/OTB/Modules/*/*/app/*.cxx ~/projets/otb/src/OTB/Examples/*/*.cxx ~/projets/otb/src/OTB/Modules/*/*/test/*.cxx > ~/temporary/run-clang-tidy-nullptr-log.txt
      
          find . -type f -print -name "*.h" -o -name "*.txx" -o -name "*.cxx" |xargs perl -pi -e 's/nullptr/ITK_NULLPTR/g'
      0f26e689
    • Manuel Grizonnet's avatar
      ENH: Explicitly recognize virtual functions in applications · 29522e41
      Manuel Grizonnet authored
              clang-tidy tool can insert missing override keyword as a macro so that missing [optional] virtual identifiers can be easily added.
      
              build otb with clang 3.8 and use cmake option CMAKE_EXPORT_COMPILE_COMMANDS=ON. Most modules and third parties have been activated.
      
              #Run clang modernize check using utility script which allow to process the code in parallel (only on Applications directory)
              python run-clang-tidy.py -clang-tidy-binary ~/software/clang+llvm-3.8.0-x86_64-linux-gnu-ubuntu-14.04/bin/clang-tidy -checks=-*,modernize-use-override -header-filter=/home/grizonnetm/projets/otb/src/OTB/Modules/Modules/Applications/.*/include/.* -j8 -fix -p ~/projets/otb/bin/release/OTB-clang3.8/ ~/projets/otb/src/OTB/Modules/Applications/*/app/*.cxx  > ~/temporary/run-clang-tidy-app-log.txt
      
              #Replace override by ITK macro (to maintain compat with c++98) in Modules/Applications
              find . -type f -print -name "*.cxx" |xargs perl -pi -e 's/\ override/\ ITK_OVERRIDE/g'
      29522e41
Loading