mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-13 10:57:49 +00:00
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.
This commit is contained in:
@@ -233,12 +233,12 @@ namespace ifcopenshell {
|
||||
static constexpr const char* const description = "";
|
||||
};
|
||||
|
||||
struct ContextTypes : public SettingBase<ContextIds, std::set<std::string>> {
|
||||
struct ContextTypes : public SettingBase<ContextTypes, std::set<std::string>> {
|
||||
static constexpr const char* const name = "context-types";
|
||||
static constexpr const char* const description = "";
|
||||
};
|
||||
|
||||
struct ContextIdentifiers : public SettingBase<ContextIds, std::set<std::string>> {
|
||||
struct ContextIdentifiers : public SettingBase<ContextIdentifiers, std::set<std::string>> {
|
||||
static constexpr const char* const name = "context-identifiers";
|
||||
static constexpr const char* const description = "";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user