Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions sycl/source/ordered_queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ ordered_queue::get_info() const {
}

#define PARAM_TRAITS_SPEC(param_type, param, ret_type) \
template ret_type ordered_queue::get_info<info::param_type::param>() const;
template __SYCL_EXPORT ret_type \
ordered_queue::get_info<info::param_type::param>() const;

#include <CL/sycl/info/queue_traits.def>

Expand All @@ -124,9 +125,9 @@ template <typename propertyT> propertyT ordered_queue::get_property() const {
return impl->get_property<propertyT>();
}

template bool
template __SYCL_EXPORT bool
ordered_queue::has_property<property::queue::enable_profiling>() const;
template property::queue::enable_profiling
template __SYCL_EXPORT property::queue::enable_profiling
ordered_queue::get_property<property::queue::enable_profiling>() const;
} // namespace sycl
} // __SYCL_INLINE_NAMESPACE(cl)
Loading