Fix missing spaces after comma.

* src/sanity/style.test: Fix the space-after-comma test.
* src/bin/randltl.cc, src/tgba/tgbaexplicit.hh: Add missing spaces.
This commit is contained in:
Alexandre Duret-Lutz 2012-09-07 13:20:42 +02:00
parent f19526a93f
commit 0990de50df
3 changed files with 3 additions and 3 deletions

View file

@ -69,7 +69,7 @@ and c, with the default tree-size, and all available operators.\n\
You can disable or favor certain operators by changing their priority.\n\ You can disable or favor certain operators by changing their priority.\n\
The following disables xor, implies, and equiv, and multiply the probability\n\ The following disables xor, implies, and equiv, and multiply the probability\n\
of X to occur by 10.\n\ of X to occur by 10.\n\
% ./randltl --ltl-priorities='xor=0,implies=0,equiv=0,X=10' -n10 a b c\n\ % ./randltl --ltl-priorities='xor=0, implies=0, equiv=0, X=10' -n10 a b c\n\
"; ";
#define OPT_DUMP_PRIORITIES 1 #define OPT_DUMP_PRIORITIES 1

View file

@ -121,7 +121,7 @@ for dir in "${INCDIR-..}" "${INCDIR-..}"/../iface; do
grep '! ' $tmp && grep '! ' $tmp &&
diag 'No space after unary operators (!).' diag 'No space after unary operators (!).'
grep ",[^ \t\"%']" $tmp && grep ",[^ \" %'\\\\]" $tmp &&
diag 'Space after coma.' diag 'Space after coma.'
# The 'r' allows operator&& # The 'r' allows operator&&

View file

@ -668,7 +668,7 @@ namespace spot
class tgba_explicit: public explicit_graph<State, tgba> class tgba_explicit: public explicit_graph<State, tgba>
{ {
public: public:
tgba_explicit(bdd_dict* dict): explicit_graph<State,tgba>(dict) tgba_explicit(bdd_dict* dict): explicit_graph<State, tgba>(dict)
{ {
} }