diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-11-05 01:40:37 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-11-05 09:28:50 +0100 |
commit | 03e3ba56fc04ebf7b9eadcd87160f4f75f42f565 (patch) | |
tree | 47c1c64e3980e8e71399ebf4a6fc7d304127e8c8 /bin | |
parent | e52294558b84fd1877aee7b0ca145251a09c57cf (diff) |
fixincludeguards.sh: add TODO note
Change-Id: Ia19608118ae129c56846941508c4cca5c9020c8d
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fixincludeguards.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/fixincludeguards.sh b/bin/fixincludeguards.sh index 5a6347f4574e..907e4aa27c98 100755 --- a/bin/fixincludeguards.sh +++ b/bin/fixincludeguards.sh @@ -11,6 +11,12 @@ # a) fixincludeguards.sh header.hxx # b) find . -name *.hxx -or -name *.h | xargs sh fixincludeguards.sh +# TODO: This doesn't fix wrong #endif comments, like: +# #ifndef FOO_BAR_HXX +# #define FOO_BAR_HXX +# ... +# #endif // OTHER_BAR_HXX + guard_prefix="INCLUDED_" for fn in "$@"; do |