[buddy] fix some -Wpedantic messages

* src/bddop.c: Empty macro arguments are undefined ISO C90 and
ISO C++98.  Use '+' when calling APPLY_SHORTCUTS.
* src/fdd.c, src/kernel.c: Avoid constructs invalid in C90.
* src/bddop.c, src/bddx.h, src/kernel.c, src/kernel.h,
examples/cmilner/cmilner.c: Remove C++ comments.
This commit is contained in:
Alexandre Duret-Lutz 2017-02-01 15:09:40 +01:00
parent f0edfdef2b
commit a2f174f721
6 changed files with 79 additions and 62 deletions

View file

@ -99,8 +99,8 @@ typedef struct s_BddNode /* Node table entry */
int next;
} BddNode;
// This structure is used during initialization of the above
// structure, to help gcc vectorize the initializing loop.
/* This structure is used during initialization of the above
structure, to help gcc vectorize the initializing loop. */
typedef struct s_BddNodeInit
{
int z;