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

@ -56,9 +56,8 @@
namespace WebContent {
ConnectionFromClient::ConnectionFromClient(GC::Heap& heap, IPC::Transport transport)
ConnectionFromClient::ConnectionFromClient(IPC::Transport transport)
: IPC::ConnectionFromClient<WebContentClientEndpoint, WebContentServerEndpoint>(*this, move(transport), 1)
, m_heap(heap)
, m_page_host(PageHost::create(*this))
{
}