From 722f71b3b3a12675f478e2682bc364cb975b55a4 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 11 Jul 2025 16:30:41 +0500 Subject: [PATCH] ifcgeom/ConversionSettings.h - fix duplicated ContextIds derived type I guess it only affected how `defineOption` worked. Noticed the issue when was looking through `ifcconvert --help` and `context-ids` were duplicated 3 times. --- src/ifcgeom/ConversionSettings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/ConversionSettings.h b/src/ifcgeom/ConversionSettings.h index 9cdeea85e9..eba6106618 100644 --- a/src/ifcgeom/ConversionSettings.h +++ b/src/ifcgeom/ConversionSettings.h @@ -233,12 +233,12 @@ namespace ifcopenshell { static constexpr const char* const description = ""; }; - struct ContextTypes : public SettingBase> { + struct ContextTypes : public SettingBase> { static constexpr const char* const name = "context-types"; static constexpr const char* const description = ""; }; - struct ContextIdentifiers : public SettingBase> { + struct ContextIdentifiers : public SettingBase> { static constexpr const char* const name = "context-identifiers"; static constexpr const char* const description = ""; };