mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-23 10:50:49 +00:00
WebContent: Remove unused private member
This commit removes the unused m_heap member from ConnectionFromClient. This also works around an issue where some cmake version doesn't apply compiler options from within a subdirectory globally.
This commit is contained in:
parent
67848a8c51
commit
8f1a7934e1
Notes:
github-actions[bot]
2025-04-04 08:10:40 +00:00
Author: https://github.com/R-Goc
Commit: 8f1a7934e1
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4217
Reviewed-by: https://github.com/gmta ✅
3 changed files with 3 additions and 5 deletions
|
@ -51,7 +51,7 @@ public:
|
|||
Queue<Web::QueuedInputEvent>& input_event_queue() { return m_input_event_queue; }
|
||||
|
||||
private:
|
||||
explicit ConnectionFromClient(GC::Heap&, IPC::Transport);
|
||||
explicit ConnectionFromClient(IPC::Transport);
|
||||
|
||||
Optional<PageClient&> page(u64 index, SourceLocation = SourceLocation::current());
|
||||
Optional<PageClient const&> page(u64 index, SourceLocation = SourceLocation::current()) const;
|
||||
|
@ -157,7 +157,6 @@ private:
|
|||
|
||||
virtual void system_time_zone_changed() override;
|
||||
|
||||
GC::Heap& m_heap;
|
||||
NonnullOwnPtr<PageHost> m_page_host;
|
||||
|
||||
HashMap<int, Web::FileRequest> m_requested_files {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue