mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 13:16:25 +00:00
heap alloc for eigen types for alignment issues
This commit is contained in:
@@ -131,7 +131,7 @@ boost::optional<std::string> format_attribute(ifcopenshell::geometry::abstract_m
|
||||
std::stringstream stream;
|
||||
for (int i = 0; i < 4; ++i) {
|
||||
for (int j = 0; j < 4; ++j) {
|
||||
const double trsf_value = matrix->components(j, i);
|
||||
const double trsf_value = (*matrix->components)(j, i);
|
||||
stream << trsf_value;
|
||||
if (i < 3 && j < 3) {
|
||||
stream << " ";
|
||||
|
||||
Reference in New Issue
Block a user