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:
R-Goc 2025-04-04 09:35:20 +02:00 committed by Jelle Raaijmakers
commit 8f1a7934e1
Notes: github-actions[bot] 2025-04-04 08:10:40 +00:00
3 changed files with 3 additions and 5 deletions

View file

@ -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 {};