Eliminate some warnings

This commit is contained in:
Thomas Krijnen
2025-08-27 11:03:16 +02:00
parent b2c20b15b4
commit a958f1373c
2 changed files with 8 additions and 4 deletions
+4
View File
@@ -9,6 +9,10 @@ namespace ifcopenshell {
struct profile_point {
std::array<double, 2> xy;
boost::optional<double> radius;
profile_point(const std::array<double, 2>& p, const boost::optional<double>& r = boost::none)
: xy(p), radius(r) {
}
};
struct profile_point_with_edges {