1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:58:12 +00:00

Lagom: Add LibGemini, LibGfx

They are dependencies of LibWeb and might be useful for
running test-web on GitHub actions one day.
This commit is contained in:
Nico Weber 2020-07-23 14:34:53 -04:00 committed by Andreas Kling
parent c4d9d5cc54
commit 3f45e9ab1e
8 changed files with 179 additions and 22 deletions

View file

@ -26,10 +26,10 @@
#pragma once
#ifdef __serenity__
#if defined(__serenity__) || defined(__linux__)
#include <AK/RefCounted.h>
#include <AK/RefPtr.h>
# include <AK/RefCounted.h>
# include <AK/RefPtr.h>
namespace AK {
@ -54,7 +54,7 @@ private:
int m_shbuf_id { -1 };
int m_size { 0 };
void* m_data;
void* m_data { nullptr };
};
}