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

0032057: Coding Rules - eliminate CLang warning -Wunused-parameter when targeting iOS

Cocoa_Window::Cocoa_Window()/OpenGl_Context::SetSwapInterval() have been corrected to suppress warning.
This commit is contained in:
kgv 2021-01-14 14:09:38 +03:00 committed by bugmaster
parent ff6122e008
commit 92cc34d702
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ Cocoa_Window::Cocoa_Window (const Standard_CString theTitle,
myYBottom (thePxTop + thePxHeight)
{
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
//
(void )theTitle;
#else
if (thePxWidth <= 0 || thePxHeight <= 0)
{

View File

@ -787,7 +787,7 @@ Standard_Boolean OpenGl_Context::SetSwapInterval (const Standard_Integer theInte
return Standard_True;
}
#elif defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
//
(void )theInterval; // vsync cannot be turned OFF on iOS
#elif defined(__APPLE__)
if (::CGLSetParameter (CGLGetCurrentContext(), kCGLCPSwapInterval, &theInterval) == kCGLNoError)
{