mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
0031789: Coding Rules - remove redundant Standard_EXPORT from TKMesh
- Standard_EXPORT which were specified for inline methods were deleted. - ALL occurrences of DEFINE_STANDARD_RTTI_INLINE were replaced by DEFINE_STANDARD_RTTIEXT in header files and IMPLEMENT_STANDARD_RTTIEXT in source files - ALL occurrences of "inline" keyword were deleted where it didn't not cause a linkage errors - Added source files for classes that were without them for IMPLEMENT_STANDARD_RTTIEXT
This commit is contained in:
@@ -33,6 +33,8 @@
|
||||
#include <TopoDS_Compound.hxx>
|
||||
#endif
|
||||
|
||||
IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_ModelHealer, IMeshTools_ModelAlgo)
|
||||
|
||||
namespace
|
||||
{
|
||||
//! Decreases deflection of the given edge and tries to update discretization.
|
||||
@@ -73,7 +75,7 @@ namespace
|
||||
};
|
||||
|
||||
//! Returns True if some of two vertcies is same with reference one.
|
||||
inline Standard_Boolean isSameWithSomeOf(
|
||||
Standard_Boolean isSameWithSomeOf(
|
||||
const TopoDS_Vertex& theRefVertex,
|
||||
const TopoDS_Vertex& theVertex1,
|
||||
const TopoDS_Vertex& theVertex2)
|
||||
@@ -83,7 +85,7 @@ namespace
|
||||
}
|
||||
|
||||
//! Returns True if some of two vertcies is within tolerance of reference one.
|
||||
inline Standard_Boolean isInToleranceWithSomeOf(
|
||||
Standard_Boolean isInToleranceWithSomeOf(
|
||||
const gp_Pnt& theRefPoint,
|
||||
const gp_Pnt& thePoint1,
|
||||
const gp_Pnt& thePoint2,
|
||||
|
Reference in New Issue
Block a user