From 889ed3bb0776ca00b1a24cdc701f650e3107204a Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sat, 20 Apr 2024 13:22:13 +0200 Subject: [PATCH] Change 'template template' to param pack to make clang happy --- src/ifcwrap/utils/type_conversion.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcwrap/utils/type_conversion.i b/src/ifcwrap/utils/type_conversion.i index 6a1ef8370f..d6d0912a55 100644 --- a/src/ifcwrap/utils/type_conversion.i +++ b/src/ifcwrap/utils/type_conversion.i @@ -95,7 +95,7 @@ container.insert(element); } - template typename U> + template typename U> U python_sequence_as_cpp_container(PyObject* aggregate) { U result_vector; if constexpr (std::is_same_v, std::vector>) {