From 21c57ac1ede30f0bee01db8fbec004e6956eaafe Mon Sep 17 00:00:00 2001 From: akl Date: Fri, 5 Dec 2008 14:43:35 +0000 Subject: [PATCH] Modify fmod() by '%' operator to operate with integers. --- src/SMESH_I/SMESH_2smeshpy.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SMESH_I/SMESH_2smeshpy.cxx b/src/SMESH_I/SMESH_2smeshpy.cxx index 130bc5fb9..4340ab41b 100644 --- a/src/SMESH_I/SMESH_2smeshpy.cxx +++ b/src/SMESH_I/SMESH_2smeshpy.cxx @@ -1726,7 +1726,7 @@ const TCollection_AsciiString & _pyCommand::GetObject() } // if number of ' or " is not divisible by 2, // then get an object at the start of the command - if ( fmod( nb1, 2 ) != 0 || fmod( nb2, 2 ) != 0 ) + if ( nb1 % 2 != 0 || nb2 % 2 != 0 ) begPos = 1; } // store -- 2.30.2