lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / external / firebird / firebird-gcc6.patch.1
blobe1361415c03beac5208668662ba11b594034e75b
1 commit 3618aa2171674babf79ef935aa049c40a3db1321
2 Author: asfernandes <asfernandes@users.sourceforge.net>
3 Date:   Sat Mar 5 03:39:36 2016 +0000
5     Make the generated code compatible with gcc 6 in C++-14 mode.
7 diff --git a/src/gpre/c_cxx.cpp b/src/gpre/c_cxx.cpp
8 index 2af96c6..2dcffd6 100644
9 --- a/src/gpre/c_cxx.cpp
10 +++ b/src/gpre/c_cxx.cpp
11 @@ -2820,7 +2820,7 @@ static void gen_request(const gpre_req* request)
12                 printa(0, "static %sshort\n   isc_%dl = %d;",
13                            (request->req_flags & REQ_extend_dpb) ? "" : CONST_STR,
14                            request->req_ident, request->req_length);
15 -               printa(0, "static %schar\n   isc_%d [] = {", CONST_STR, request->req_ident);
16 +               printa(0, "static %sunsigned char\n   isc_%d [] = {", CONST_STR, request->req_ident);
18                 const TEXT* string_type = "blr";
19                 if (gpreGlob.sw_raw)