From 658095ea29edbf1e8c826494c07a77edc21b26e8 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 17 Jan 2024 11:10:06 +0100 Subject: [PATCH] #4222 template kw --- src/examples/IfcParseExamples.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/IfcParseExamples.cpp b/src/examples/IfcParseExamples.cpp index 92faca6133..8bf6688e0a 100644 --- a/src/examples/IfcParseExamples.cpp +++ b/src/examples/IfcParseExamples.cpp @@ -112,7 +112,7 @@ std::string format_string(const Argument* argument) { template void process_pset(element_properties& props, const T* inst) { // Process an individual Property or Quantity set. - if (auto pset = inst->as()) { + if (auto pset = inst->template as()) { if (!pset->Name()) { return; }