mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:57:35 +00:00
Integrate ext2 from VFS into Kernel.
This commit is contained in:
parent
aec8ab0a60
commit
9171521752
45 changed files with 662 additions and 1085 deletions
|
@ -1,15 +1,14 @@
|
|||
#include "StringImpl.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <new>
|
||||
#include "StdLib.h"
|
||||
#include "kmalloc.h"
|
||||
|
||||
namespace AK {
|
||||
|
||||
StringImpl& StringImpl::theEmptyStringImpl()
|
||||
{
|
||||
static StringImpl* s = new StringImpl(ConstructTheEmptyStringImpl);
|
||||
static StringImpl* s = nullptr;
|
||||
if (!s)
|
||||
s = new StringImpl(ConstructTheEmptyStringImpl);
|
||||
return *s;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue