From 124f786007ca618ebd3ede4d256b46d67d49d8b0 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Tue, 14 Jun 2022 17:18:44 +0200 Subject: [PATCH] Update Kernel.cpp --- src/ifcgeom_schema_agnostic/Kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom_schema_agnostic/Kernel.cpp b/src/ifcgeom_schema_agnostic/Kernel.cpp index 924cd7bde0..385979c555 100644 --- a/src/ifcgeom_schema_agnostic/Kernel.cpp +++ b/src/ifcgeom_schema_agnostic/Kernel.cpp @@ -411,7 +411,7 @@ bool IfcGeom::Kernel::is_identity(const gp_GTrsf& t, double tolerance) { return is_identity_helper(t, tolerance); } -inline IFC_PARSE_API gp_Trsf IfcGeom::Kernel::combine_offset_and_rotation(const gp_Vec & offset, const gp_Quaternion & rotation) { +gp_Trsf IfcGeom::Kernel::combine_offset_and_rotation(const gp_Vec & offset, const gp_Quaternion & rotation) { auto offset_transform = gp_Trsf{}; offset_transform.SetTranslation(offset);