Skip to content

Commit 3b22866

Browse files
Add missing override specifier.
Change-Id: Ide680ec0b85103611ee1b32f327e4f95e491a7da Signed-off-by: Zdunowski, Piotr <[email protected]>
1 parent b169e33 commit 3b22866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unit_tests/memory_manager/internal_allocation_storage_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class WaitAtDeletionAllocation : public MockGraphicsAllocation {
203203

204204
std::mutex mutex;
205205
std::atomic<bool> inDestructor;
206-
~WaitAtDeletionAllocation() {
206+
~WaitAtDeletionAllocation() override {
207207
inDestructor = true;
208208
std::lock_guard<std::mutex> lock(mutex);
209209
}

0 commit comments

Comments
 (0)