From: Paul Eggert Date: Thu, 21 Nov 2002 05:22:29 +0000 (+0000) Subject: (struniq_assert): Now returns void, and aborts if the assertion is false. X-Git-Tag: BISON-1_875~220 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/fe22d5d20ff5a88a3a0dba28a11623b235a422ab (struniq_assert): Now returns void, and aborts if the assertion is false. --- diff --git a/src/struniq.c b/src/struniq.c index e593a4d3..a42f7862 100644 --- a/src/struniq.c +++ b/src/struniq.c @@ -51,21 +51,17 @@ struniq_new (const char *s) } -/*---------------------------------. -| Return TRUE iff S is a struniq. | -`---------------------------------*/ +/*------------------------------. +| Abort if S is not a struniq. | +`------------------------------*/ -bool -struniq_assert_p (const char *s) +void +struniq_assert (const char *s) { if (!hash_lookup (struniqs_table, s)) { error (0, 0, "not a struniq: %s", quotearg (s)); - return false; - } - else - { - return true; + abort (); } } diff --git a/src/struniq.h b/src/struniq.h index adaee5d9..f72116c3 100644 --- a/src/struniq.h +++ b/src/struniq.h @@ -41,8 +41,7 @@ struniq_t struniq_new (const char *s); void struniqs_new (void); /* Die if S is not a struniq. */ -#define struniq_assert(S) assert (struniq_assert_p (S)); -bool struniq_assert_p (const char *s); +void struniq_assert (const char *s); /* Free all the memory allocated for symbols. */ void struniqs_free (void);