Skip to content

Commit 4a11574

Browse files
authored
remove a minior compile warning (#181)
- remove un-referenced simbol
1 parent f4ffe09 commit 4a11574

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/CL/opencl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3885,7 +3885,7 @@ cl::pointer<T, detail::Deleter<Alloc>> allocate_pointer(const Alloc &alloc_, Arg
38853885

38863886
return cl::pointer<T, detail::Deleter<Alloc>>(tmp, detail::Deleter<Alloc>{alloc, copies});
38873887
}
3888-
catch (std::bad_alloc& b)
3888+
catch (std::bad_alloc&)
38893889
{
38903890
std::allocator_traits<Alloc>::deallocate(alloc, tmp, copies);
38913891
throw;

0 commit comments

Comments
 (0)