8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:40:38 +01:00

Use public datatype FB_BOOLEAN for preprocessed files. Thanks to Dmitry Yemanov

This commit is contained in:
aafemt 2016-03-11 14:10:03 +00:00
parent 7a6399fd5f
commit 13bb1d3bd8
3 changed files with 5 additions and 5 deletions

View File

@ -3595,7 +3595,7 @@ static void make_array_declaration(ref* reference)
break;
case dtype_boolean:
dtype = "UCHAR";
dtype = "FB_BOOLEAN";
break;
default:
@ -3759,7 +3759,7 @@ static void make_port(const gpre_port* port, int column)
break;
case dtype_boolean:
dtype = "UCHAR";
dtype = "FB_BOOLEAN";
break;
default:

View File

@ -702,7 +702,7 @@ static void make_port( const gpre_port* port, int column)
break;
case dtype_boolean:
fmtstr = " UCHAR jrd_%d;\t// %s ";
fmtstr = " FB_BOOLEAN jrd_%d;\t// %s ";
break;
default:

View File

@ -3584,7 +3584,7 @@ static void make_array_declaration(ref* reference)
break;
case dtype_boolean:
dtype = "UCHAR";
dtype = "FB_BOOLEAN";
break;
default:
@ -3748,7 +3748,7 @@ static void make_port(const gpre_port* port, int column)
break;
case dtype_boolean:
dtype = "UCHAR";
dtype = "FB_BOOLEAN";
break;
default: