- 26 Jul, 2016 1 commit
-
-
Rashad Kanavath authored
-
- 20 Jul, 2016 1 commit
-
-
Guillaume Pasero authored
-
- 19 Jul, 2016 1 commit
-
-
Guillaume Pasero authored
-
- 12 Jul, 2016 1 commit
-
-
Guillaume Pasero authored
-
- 01 Jul, 2016 1 commit
-
-
Emmanuelle Sarrazin authored
-
- 29 Jun, 2016 2 commits
-
-
Guillaume Pasero authored
-
Guillaume Pasero authored
-
- 16 Jun, 2016 1 commit
-
-
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'
-
- 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'
-
- 26 May, 2016 6 commits
-
-
Julien Michel authored
-
Julien Michel authored
-
Julien Michel authored
-
Julien Michel authored
-
Julien Michel authored
-
Julien Michel authored
-
- 25 May, 2016 1 commit
-
-
Julien Michel authored
-
- 08 Apr, 2016 2 commits
-
-
Guillaume Pasero authored
BUG: Mantis-1182: avoid crash with ComplexInputImageParameter (same behavior as InputImageParameter)
-
Guillaume Pasero authored
-
- 09 Feb, 2016 1 commit
-
-
Julien Michel authored
-
- 27 Jan, 2016 1 commit
-
-
Rashad Kanavath authored
-
- 12 Jan, 2016 1 commit
-
-
Manuel Grizonnet authored
-
- 04 Jan, 2016 1 commit
-
-
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
-
- 15 Dec, 2015 1 commit
-
-
Julien Michel authored
-
- 11 Dec, 2015 1 commit
-
-
Manuel Grizonnet authored
-
- 04 Dec, 2015 1 commit
-
-
Rashad Kanavath authored
-
- 01 Dec, 2015 1 commit
-
-
Rashad Kanavath authored
-
- 30 Nov, 2015 1 commit
-
-
Stéphane Albert authored
BUG: MANTIS-1112 (File not found if filename contains accents when using GUI) Replaced QString::toAscii() by QFile::encodeName() when converting filenames to std::string and used QFile::decodeName() when converting std::string filenames to QString ones.
-
- 27 Nov, 2015 1 commit
-
-
Rashad Kanavath authored
-
- 23 Nov, 2015 1 commit
-
-
Rashad Kanavath authored
-
- 20 Nov, 2015 1 commit
-
-
Rashad Kanavath authored
-
- 05 Nov, 2015 1 commit
-
-
Guillaume Pasero authored
-
- 04 Nov, 2015 2 commits
-
-
Guillaume Pasero authored
-
Guillaume Pasero authored
-
- 03 Nov, 2015 6 commits
-
-
Stéphane Albert authored
-
Stéphane Albert authored
-
Stéphane Albert authored
-
Stéphane Albert authored
-
Stéphane Albert authored
ENH: OTB-applications wrappers: initialized directory of file-dialog openend when using browse button with edited text.
-
Stéphane Albert authored
ENH: Moved otb::Wrapper::QtWidgetOutputFilenameParameter::SetFileName() and ::QtWidgetOutputVectorDataParameter::SetFileName() into public slots section.
-