From 31249d19671cc88109a94380df252335146a2319 Mon Sep 17 00:00:00 2001 From: ski Date: Wed, 16 Apr 2014 18:16:33 +0400 Subject: [PATCH] 0024848: CLang warnings -Wunused-value Warning should be fixed. --- src/QABugs/QABugs_11.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QABugs/QABugs_11.cxx b/src/QABugs/QABugs_11.cxx index 55e5f35357..9efdd19ec7 100644 --- a/src/QABugs/QABugs_11.cxx +++ b/src/QABugs/QABugs_11.cxx @@ -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 << "-- "<