File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ class usm_allocator {
38
38
AllocKind != usm::alloc::device,
39
39
" usm_allocator does not support AllocKind == usm::alloc::device" );
40
40
41
- usm_allocator () noexcept = delete ;
41
+ usm_allocator () = delete ;
42
42
usm_allocator (const context &Ctxt, const device &Dev,
43
- const property_list &PropList = {}) noexcept
43
+ const property_list &PropList = {})
44
44
: MContext(Ctxt), MDevice(Dev), MPropList(PropList) {}
45
- usm_allocator (const queue &Q, const property_list &PropList = {}) noexcept
45
+ usm_allocator (const queue &Q, const property_list &PropList = {})
46
46
: MContext(Q.get_context()), MDevice(Q.get_device()),
47
47
MPropList (PropList) {}
48
- usm_allocator (const usm_allocator &) noexcept = default;
48
+ usm_allocator (const usm_allocator &) = default;
49
49
usm_allocator (usm_allocator &&) noexcept = default;
50
50
usm_allocator &operator =(const usm_allocator &Other) {
51
51
MContext = Other.MContext ;
You can’t perform that action at this time.
0 commit comments