mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:03:03 +01:00
C++ specification does not allow unbraced linkage specification with storage class (and neither does GCC 4.1.2)
This commit is contained in:
parent
c471843315
commit
9aa6368cc2
@ -2827,7 +2827,7 @@ static int blocking_ast_bdb(void* ast_object)
|
||||
#ifdef DIRTY_LIST
|
||||
|
||||
// Used in qsort below
|
||||
extern "C"
|
||||
extern "C" {
|
||||
static int cmpBdbs(const void* a, const void* b)
|
||||
{
|
||||
const BufferDesc* bdbA = *(BufferDesc**) a;
|
||||
@ -2841,6 +2841,7 @@ static int cmpBdbs(const void* a, const void* b)
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Remove cleared precedence blocks from high precedence queue
|
||||
|
Loading…
Reference in New Issue
Block a user