util/{Const,Writable}Buffer: eliminate static method Null(), use nullptr cast instead
This commit is contained in:
@@ -72,7 +72,7 @@ public:
|
||||
|
||||
AllocatedArray(AllocatedArray &&other)
|
||||
:buffer(other.buffer) {
|
||||
other.buffer = Buffer::Null();
|
||||
other.buffer = nullptr;
|
||||
}
|
||||
|
||||
~AllocatedArray() {
|
||||
|
||||
Reference in New Issue
Block a user