Hi all!
I installed AC11.01 all is ok,
when compiling i have
E2019 'TDstRect:: :: ()' cannot be declared in an anonymous union Full parser context
[bcc32 Error] acntTypes.hpp(84): E2019 'TDstRect:: :: ()' cannot be declared in an anonymous union
Full parser context
Unit2.cpp(7): #include Unit2.h
Unit2.h(10): #include C:Program Files (x86)EmbarcaderoRAD Studio10.0ComponentsAlphaSkinsBuilderXE3sButton.hpp
sButton.hpp(29): #include C:Program Files (x86)EmbarcaderoRAD Studio10.0ComponentsAlphaSkinsBuilderXE3sCommonData.hpp
sCommonData.hpp(28): #include C:Program Files (x86)EmbarcaderoRAD Studio10.0ComponentsAlphaSkinsBuilderXE3sSkinManager.hpp
sSkinManager.hpp(30): #include C:Program Files (x86)EmbarcaderoRAD Studio10.0ComponentsAlphaSkinsBuilderXE3sConst.hpp
sConst.hpp(24): #include C:Program Files (x86)EmbarcaderoRAD Studio10.0ComponentsAlphaSkinsBuilderXE3acntTypes.hpp
acntTypes.hpp(31): namespace Acnttypes
acntTypes.hpp(67): class TDstRect
in this code
struct DECLSPEC_DRECORD TSrcRect
{
#pragma pack(push,1)
union
{
struct
{
System::Types::TPoint STopLeft;
System::Types::TPoint SBottomRight;
};
struct
{
int SLeft;
int STop;
int SRight;
int SBottom;
};
};
#pragma pack(pop)
};
how i can fix it?