Skip to content
Snippets Groups Projects
Commit 82842d15 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: Remove double underscore in header guards (.txx & __otb*_h form)

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.
parent 890821aa
No related branches found
No related tags found
No related merge requests found
Showing
with 56 additions and 56 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment