Skip to content
Snippets Groups Projects
  1. Sep 08, 2017
  2. Sep 07, 2017
  3. Sep 05, 2017
  4. Aug 25, 2017
  5. Aug 24, 2017
  6. Aug 22, 2017
  7. Aug 21, 2017
  8. Aug 18, 2017
  9. Aug 10, 2017
  10. Jun 09, 2017
  11. May 03, 2017
  12. May 02, 2017
  13. Mar 08, 2017
  14. Jan 23, 2017
  15. Dec 14, 2016
  16. Sep 16, 2016
  17. Jun 16, 2016
    • 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
  18. May 04, 2015
  19. Feb 18, 2015
  20. Oct 28, 2014
  21. Jun 02, 2014
  22. May 28, 2014
  23. Nov 22, 2013
  24. Nov 15, 2013
  25. Aug 08, 2013
  26. May 15, 2013
  27. Jan 25, 2013
  28. Jan 10, 2013
  29. Mar 01, 2012
  30. Feb 13, 2012
Loading