diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-08-19 13:31:10 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-08-19 13:31:10 -0400 |
commit | a859e640035680db31531ccd19a67292dd726baf (patch) | |
tree | c06c1f5df27cde6bc5cf1a91c02e9241aae03fbb /src/include/regex/regguts.h | |
parent | 6eefd2422ef232aec2fe12465d9ec4018c63814d (diff) | |
download | postgresql-a859e640035680db31531ccd19a67292dd726baf.tar.gz postgresql-a859e640035680db31531ccd19a67292dd726baf.zip |
Clean up another pre-ANSI-C-ism in regex code: get rid of pcolor typedef.
pcolor was used to represent function arguments that are nominally of
type color, but when using a pre-ANSI C compiler would be passed as the
promoted integer type. We really don't need that anymore.
Diffstat (limited to 'src/include/regex/regguts.h')
-rw-r--r-- | src/include/regex/regguts.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/regex/regguts.h b/src/include/regex/regguts.h index 2ceffa6563b..b0aa641cc4f 100644 --- a/src/include/regex/regguts.h +++ b/src/include/regex/regguts.h @@ -149,7 +149,6 @@ * which are of much more manageable number. */ typedef short color; /* colors of characters */ -typedef int pcolor; /* what color promotes to */ #define MAX_COLOR 32767 /* max color (must fit in 'color' datatype) */ #define COLORLESS (-1) /* impossible color */ |