- 07 Jun, 2018 1 commit
-
-
Victor Poughon authored
-
- 12 Mar, 2018 1 commit
-
-
Julien Michel authored
STY: Change ITK_OVERRIDE for override in whole code (find Modules -type f -exec sed -i 's/ITK_OVERRIDE/override/g' {} +)
-
- 05 Apr, 2017 1 commit
-
-
Guillaume Pasero authored
-
- 08 Mar, 2017 2 commits
-
-
Sébastien Dinot authored
-
Sébastien Dinot authored
-
- 16 Sep, 2016 1 commit
-
-
Manuel Grizonnet authored
-
- 15 Sep, 2016 1 commit
-
-
Manuel Grizonnet authored
-
- 13 Jun, 2016 1 commit
-
-
Manuel Grizonnet authored
Used the following command: find . \( -iname *.txx -and ! -path *ThirdParty* \) -exec perl -pi -w -e 's/__otb(.*)_txx/otb$1_txx/g;' {} \; find . \( -iname *.h -and ! -path *ThirdParty* \) -exec perl -pi -w -e 's/__otb(.*)_h/otb$1_h/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings.
-
- 10 Jun, 2016 1 commit
-
-
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'
-
- 19 Feb, 2015 1 commit
-
-
Julien Malik authored
-
- 18 Feb, 2015 2 commits
-
-
Julien Malik authored
-
Julien Malik authored
-
- 16 Dec, 2011 1 commit
-
-
Julien Malik authored
-
- 22 Jul, 2011 1 commit
-
-
Emmanuel Christophe authored
-
- 20 Sep, 2010 1 commit
-
-
Emmanuel Christophe authored
-
- 07 Jul, 2010 1 commit
-
-
OTB Bot authored
-
- 09 Apr, 2010 1 commit
-
-
OTB Bot authored
-
- 21 Feb, 2010 1 commit
-
-
Emmanuel Christophe authored
-
- 22 Jan, 2010 1 commit
-
-
Emmanuel Christophe authored
-
- 17 Jan, 2010 1 commit
-
-
Manuel Grizonnet authored
-
- 09 Oct, 2009 2 commits
-
-
Emmanuel Christophe authored
-
Emmanuel Christophe authored
-
- 27 Aug, 2009 1 commit
-
-
Emmanuel Christophe authored
BUG: destructor should be virtual if there is at least one other virtual method in the class (ie the class is expected to be inherited)
-
- 17 Jul, 2009 1 commit
-
-
Cyrille Valladeau authored
-