mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
AK: Override StringImpl's operator delete to silence valgrind.
This commit is contained in:
parent
92cda74724
commit
4ee39d6292
1 changed files with 9 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#include "RetainPtr.h"
|
||||
#include "Retainable.h"
|
||||
#include "Types.h"
|
||||
#include <AK/RetainPtr.h>
|
||||
#include <AK/Retainable.h>
|
||||
#include <AK/Types.h>
|
||||
#include <AK/kmalloc.h>
|
||||
|
||||
namespace AK {
|
||||
|
||||
|
@ -19,6 +20,11 @@ public:
|
|||
Retained<StringImpl> to_lowercase() const;
|
||||
Retained<StringImpl> to_uppercase() const;
|
||||
|
||||
void operator delete(void* ptr)
|
||||
{
|
||||
kfree(ptr);
|
||||
}
|
||||
|
||||
static StringImpl& the_empty_stringimpl();
|
||||
|
||||
~StringImpl();
|
||||
|
|
Loading…
Reference in a new issue