1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00

0024848: CLang warnings -Wunused-value

Warning should be fixed.
This commit is contained in:
ski 2014-04-16 18:16:33 +04:00 committed by apn
parent a20983607c
commit 31249d1967

View File

@ -2482,7 +2482,7 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co
Standard_Real res, r=RealLast();
res = r * r;
sin(1.); //this function tests FPU flags and raises signal (tested on LINUX).
(void)sin(1.); //this function tests FPU flags and raises signal (tested on LINUX).
di << "-- "<<res<<"="<<r<<"*"<<r<<" Does not Caught... KO"<< "\n";
Succes = Standard_False;