mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
Change 'template template' to param pack to make clang happy
This commit is contained in:
@@ -95,7 +95,7 @@
|
||||
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> result_vector;
|
||||
if constexpr (std::is_same_v<U<T>, std::vector<T>>) {
|
||||
|
||||
Reference in New Issue
Block a user