aboutsummaryrefslogtreecommitdiff
path: root/src/include/common/unicode_norm_table.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-04-07 16:32:02 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-04-07 16:32:02 -0400
commit0cb2e51992a7940f9e577a74da250508aedcecf7 (patch)
tree37c39570126c1b3442125d080703cc66c3d25a8e /src/include/common/unicode_norm_table.h
parent817cb100136a15796cbd9e70f49d20625108d782 (diff)
downloadpostgresql-0cb2e51992a7940f9e577a74da250508aedcecf7.tar.gz
postgresql-0cb2e51992a7940f9e577a74da250508aedcecf7.zip
Avoid using a C++ keyword in header file
per cpluspluscheck
Diffstat (limited to 'src/include/common/unicode_norm_table.h')
-rw-r--r--src/include/common/unicode_norm_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/common/unicode_norm_table.h b/src/include/common/unicode_norm_table.h
index a0181f1b964..3bcf05e5eec 100644
--- a/src/include/common/unicode_norm_table.h
+++ b/src/include/common/unicode_norm_table.h
@@ -19,7 +19,7 @@
typedef struct
{
uint32 codepoint; /* Unicode codepoint */
- uint8 class; /* combining class of character */
+ uint8 comb_class; /* combining class of character */
uint8 dec_size_flags; /* size and flags of decomposition code list */
uint16 dec_index; /* index into UnicodeDecomp_codepoints, or the
* decomposition itself if DECOMP_INLINE */