1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0026784: Coding rules - eliminate GCC warning -Wunused-parameter

OSD_Thread - use pthread_timedjoin_np() instead of pthread_join() when available (glibc extension).
Suppress unused parameter warning in OSD_Signal, NCollection_WinHeapAllocator, OpenGl_Text, OpenGl_View, V3d_View and ViewerTest.
This commit is contained in:
rkv
2015-10-29 10:43:23 +03:00
committed by bugmaster
parent 1c9d32256d
commit c85385c0e2
7 changed files with 49 additions and 6 deletions

View File

@@ -4275,6 +4275,8 @@ static int VPrintView (Draw_Interpretor& di, Standard_Integer argc,
const char** argv)
{
#ifndef _WIN32
(void )argc;
(void )argv;
di << "Printing implemented only for WNT!\n";
return 0;
#else