diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-25 01:05:59 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-25 01:06:29 -0500 |
| commit | 223e9f06e4db61b0bc79a6d56030bb9b6a681bfb (patch) | |
| tree | f43070a369c6e83dae119ba0291b4c2e70d10a51 /include/ocl/memory | |
| parent | 52399b9b2fe46e29c5ee265baf8cb7f1717a4c53 (diff) | |
feat: new FIX parser and improvements on the library in general.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ocl/memory')
| -rw-r--r-- | include/ocl/memory/tracked_ptr.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ocl/memory/tracked_ptr.hpp b/include/ocl/memory/tracked_ptr.hpp index 029e424..f763802 100644 --- a/include/ocl/memory/tracked_ptr.hpp +++ b/include/ocl/memory/tracked_ptr.hpp @@ -94,7 +94,7 @@ namespace ocl::memory public: using pointer_type = T*; - + const tracked_allocator<T>& allocator() noexcept { return allocator_; @@ -144,7 +144,7 @@ namespace ocl::memory this->reset(); } - tracked_ptr(const tracked_ptr&) = delete; + tracked_ptr(const tracked_ptr&) = delete; tracked_ptr& operator=(const tracked_ptr&) = delete; public: |
