Skip to content

Commit 889ed3b

Browse files
committed
Change 'template template' to param pack to make clang happy
1 parent 053c80a commit 889ed3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ifcwrap/utils/type_conversion.i

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
container.insert(element);
9696
}
9797

98-
template <typename T, template<typename> typename U>
98+
template <typename T, template<typename...> typename U>
9999
U<T> python_sequence_as_cpp_container(PyObject* aggregate) {
100100
U<T> result_vector;
101101
if constexpr (std::is_same_v<U<T>, std::vector<T>>) {

0 commit comments

Comments
 (0)