1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Coding - Image_AlienPixMap unused parameters

This commit is contained in:
dpasukhi 2024-09-07 08:51:11 +00:00
parent ed20837d8b
commit 392ba7dbb6

View File

@ -1251,6 +1251,7 @@ bool Image_AlienPixMap::Save (Standard_Byte* theBuffer,
}
return true;
#else
(void)theLength;
if (theBuffer != NULL)
{
Message::SendFail ("Error: no image library available");
@ -1450,6 +1451,8 @@ bool Image_AlienPixMap::Save (std::ostream& theStream, const TCollection_AsciiSt
}
return true;
#else
(void)theExtension;
(void)theStream;
Message::SendFail ("Error: no image library available");
return false;
#endif