Skip to content
Snippets Groups Projects
  1. Apr 23, 2020
  2. Sep 17, 2019
  3. Jul 03, 2019
  4. May 22, 2019
  5. May 20, 2019
  6. May 16, 2019
  7. Feb 20, 2019
  8. Feb 14, 2019
  9. Feb 13, 2019
  10. Feb 08, 2019
  11. Jan 14, 2019
  12. Jan 08, 2019
  13. Jan 07, 2019
  14. Oct 30, 2018
  15. Jun 25, 2018
  16. Jun 07, 2018
  17. Mar 08, 2017
  18. Sep 20, 2016
  19. Sep 15, 2016
  20. Jun 13, 2016
  21. Jun 10, 2016
    • Manuel Grizonnet's avatar
      ENH: Explicitly recognize virtual functions · 3de2b346
      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.
      
          #Save override occurences in otb code
          cd src/Modules ; grep -nR "override" * > ~/temporary/override_otb.txt
      
          #Run clang modernize check using utility script which allow to process the code in parallel
          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/.*/.*/include/.* -j8 -fix -p ~/projets/otb/bin/release/OTB-clang3.8/ ~/projets/otb/src/OTB/Modules/*/*/src/*.cxx ~/projets/otb/src/OTB/Examples/*/*.cxx ~/projets/otb/src/OTB/Modules/*/*/test/*.cxx > ~/temporary/run-clang-tidy-log.txt
      
          #Replace override by ITK macro (to maintain compat with c++98)
          find . -type f -print -name "*.h" -o -name "*.txx" |xargs perl -pi -e 's/\ override/\ ITK_OVERRIDE/g'
      3de2b346
  22. Jan 04, 2016
    • Rashad Kanavath's avatar
      ENH: apply spelling.patch from DebianGIS · 8cafd175
      Rashad Kanavath authored
      This is a big one without much harm. It fixes incorrect spelling
      and grammer when packaging OTB 5.0.0 and 5.2.0 for Debian.
      Most of these changes are done by developers at DebianGIS.
      For more info, I include the original patch header below.
      Description: Fix some spelling errors to silence lintian
      enabling  to concentrate on the real problem.
      Author: Andreas Tille <tille@debian.org>
      Author: Rashad Kanavath <rashad.kanavath@c-s.fr>
      Author: Bas Couwenberg <sebastic@xs4all.nl>
      Last-Update: 2015-12-22
      8cafd175
  23. Nov 21, 2015
  24. Sep 21, 2015
    • Manuel Grizonnet's avatar
      "BUG: fix missing ITCopyright.txt" · c9a072d0
      Manuel Grizonnet authored
      Following remarks from debian packagers, the ITCopyright.txt was mentioned in
      several files but not available in the Copyright directory.  After contacting
      the contributor Gregoire Mercier, he has suggested to harmonize the copyright for his
      contributions.  Files with GET or IT copyright referenced now the
      IMTCopyright.txt file (Institut Mines Telecom) which was added to the Copyright directory.
      
      Moreover, Gregoire Mercier confirmed that he is not the author of 7 files which
      are mentioning the GET or IT copyright:
      
      Modules/Filtering/Projection/include/otbROIdataConversion.h
      Modules/Filtering/Projection/include/otbROIdataConversion.txx
      Modules/Segmentation/Conversion/test/otbVectorDataRasterizeFilter.cxx
      Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilterWithoutReader.cxx
      Modules/Segmentation/Conversion/test/otbPolygonizationRasterizationTest.cxx
      Modules/Segmentation/Conversion/test/otbVectorDataToLabelImageFilter.cxx
      Modules/Segmentation/Conversion/test/otbOGRDataSourceToLabelImageFilter.cxx
      
      Thus, the copyright was also modified for these 7 files (CNES Copyright).
      c9a072d0
  25. May 04, 2015
  26. Feb 22, 2015
  27. Feb 21, 2015
  28. Feb 19, 2015
  29. Feb 18, 2015
  30. Feb 09, 2015
  31. Jan 26, 2015
Loading