diff options
author | Bruce Momjian | 2001-10-25 00:55:48 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-10-25 00:55:48 +0000 |
commit | d95826ac3b768f6130ee5966e61ec621ca663748 (patch) | |
tree | 4e6656a8c0c4c65a3af611c139a7591417a5ff59 /src/backend/regex/regexec.c | |
parent | 8372a511d9634346a966b80800062b6f252e9fee (diff) |
Add more missing 'do { ... } while (0)' in missing macros. Without it,
these macros fail in if/else cases:
#define X \
{ \
... \
}
{
if (...)
X;
else
...
}
with proper setup:
#define X \
do { \
... \
} while (0)
it works fine.
Diffstat (limited to 'src/backend/regex/regexec.c')
0 files changed, 0 insertions, 0 deletions