8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 06:43:03 +01:00

-Fix last C++ ISO error (now FB can be built with -pedantic -Wno-long-long)

This commit is contained in:
brodsom 2004-05-14 14:29:34 +00:00
parent 836955a9aa
commit 121603b35d

View File

@ -56,9 +56,10 @@ namespace Firebird
protected:
union {
char_type smallStorage[smallStorageSize];
struct {
// BRS 14/05/04: ISO C++ don't allow anonymous struct inside anonymous union
// struct {
char_type* bigStorage;
};
// };
};
unsigned short userSize, actualSize;
private: