* src/tgbaalgos/neverclaim.cc: Fix them.

* sanity/style.test: Diagnose semicolons with leading spaces.
This commit is contained in:
Alexandre Duret-Lutz 2004-05-17 10:33:46 +00:00
parent d22c647322
commit 25dc63d1d4
3 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2004-05-17 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-05-17 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/neverclaim.cc: Fix them.
* sanity/style.test: Diagnose semicolons with leading spaces.
* src/ltlvisit/forminf.cc: Fix style to please sanity checks. * src/ltlvisit/forminf.cc: Fix style to please sanity checks.
Also avoid node_type_form_visitor where a dynamic_cast is done. Also avoid node_type_form_visitor where a dynamic_cast is done.

View file

@ -90,6 +90,9 @@ while read file; do
grep '[ ]case.*:[^:].*;' $tmp && grep '[ ]case.*:[^:].*;' $tmp &&
diag 'Label should be on their own line.' diag 'Label should be on their own line.'
grep '[ ];' $tmp &&
diag 'No space before semicolon.'
$fail && echo "$file" >>failures $fail && echo "$file" >>failures
done done