mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-22 13:48:03 +00:00
Change 'template template' to param pack to make clang happy
This commit is contained in:
@@ -95,7 +95,7 @@
|
|||||||
container.insert(element);
|
container.insert(element);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T, template<typename> typename U>
|
template <typename T, template<typename...> typename U>
|
||||||
U<T> python_sequence_as_cpp_container(PyObject* aggregate) {
|
U<T> python_sequence_as_cpp_container(PyObject* aggregate) {
|
||||||
U<T> result_vector;
|
U<T> result_vector;
|
||||||
if constexpr (std::is_same_v<U<T>, std::vector<T>>) {
|
if constexpr (std::is_same_v<U<T>, std::vector<T>>) {
|
||||||
|
|||||||
Reference in New Issue
Block a user