From 972a1fd3091d172de30c539c6423e87f5a3ac2db Mon Sep 17 00:00:00 2001 From: HugoBallee Date: Tue, 10 Mar 2026 09:37:26 +0100 Subject: [PATCH] Update getting_started.rst IFC_SCHEMA_NAME matching includes --- src/ifcopenshell-python/docs/ifcopenshell/getting_started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/docs/ifcopenshell/getting_started.rst b/src/ifcopenshell-python/docs/ifcopenshell/getting_started.rst index 351dec6a61..92f89def7f 100644 --- a/src/ifcopenshell-python/docs/ifcopenshell/getting_started.rst +++ b/src/ifcopenshell-python/docs/ifcopenshell/getting_started.rst @@ -30,7 +30,7 @@ would be with the use of templates as shown below. #include "ifcparse/Ifc4.h" #include "ifcparse/Ifc4x3_add2.h" - #define IFC_SCHEMA_SEQ (4x3_rc2)(4)(2x3) // TODO: Enumerate through all IFC schemas you want to be able to process + #define IFC_SCHEMA_SEQ (4x3_add2)(4)(2x3) // TODO: Enumerate through all IFC schemas you want to be able to process #define EXPAND_AND_CONCATENATE(elem) Ifc##elem #define PROCESS_FOR_SCHEMA(r, data, elem) if (schema_version == BOOST_PP_STRINGIZE(elem)) { parseIfc(file); } else