mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibCore: Explicitly export symbols from LibCore
This patch adds explicit symbol export to LibCore. This leads to about 350 less symbols being exported.
This commit is contained in:
Notes:
github-actions[bot]
2026-02-26 17:34:35 +00:00
Author: https://github.com/R-Goc Commit: https://github.com/LadybirdBrowser/ladybird/commit/919f44f3a5b Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/7011 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/ayeteadoe
@@ -9,6 +9,7 @@
|
||||
#include <AK/NonnullRefPtr.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <LibCore/Event.h>
|
||||
#include <LibCore/Export.h>
|
||||
#include <LibCore/Forward.h>
|
||||
|
||||
namespace Core {
|
||||
@@ -16,7 +17,7 @@ namespace Core {
|
||||
// Per-thread global event queue. This is where events are queued for the EventLoop to process.
|
||||
// There is only one ThreadEventQueue per thread, and it is accessed via ThreadEventQueue::current().
|
||||
// It is allowed to post events to other threads' event queues.
|
||||
class ThreadEventQueue {
|
||||
class CORE_API ThreadEventQueue {
|
||||
AK_MAKE_NONCOPYABLE(ThreadEventQueue);
|
||||
AK_MAKE_NONMOVABLE(ThreadEventQueue);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user