util/AllocatedArray: fix -Wunused-parameter
This commit is contained in:
@@ -107,7 +107,7 @@ public:
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
AllocatedArray &operator=(std::nullptr_t n) noexcept {
|
AllocatedArray &operator=(std::nullptr_t) noexcept {
|
||||||
delete[] buffer.data();
|
delete[] buffer.data();
|
||||||
buffer = {};
|
buffer = {};
|
||||||
return *this;
|
return *this;
|
||||||
|
Reference in New Issue
Block a user