Skip to content

Commit 2fdd920

Browse files
committed
Merge #143: cleanup: initialize vars in the EventLoop constructor in the correct order
f52d08c cleanup: initialize vars in the EventLoop constructor in the correct order (Cory Fields) Pull request description: This legitimate warning pops up when built with clang 20 and Core's flags: `warning: field 'm_context' will be initialized after field 'm_task_set' [-Wreorder-ctor]` It looks like there are no dependency issues here and the reordering is safe, but please let me know if I'm wrong. ACKs for top commit: ryanofsky: Code review ACK f52d08c. Looks good, thanks for the fix! hebasto: ACK f52d08c, tested on Ubuntu 24.04: Tree-SHA512: 13ae8faf8565083353dfa53a8d36d19296c9fd41fa6621ac78fd3bde8b222848e4c536f9949ecf6a19b9a4f2aee3f51fb0379f5ce61d6e9636af050caba1122a
2 parents 0c2ac4d + f52d08c commit 2fdd920

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mp/proxy.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ void Connection::addAsyncCleanup(std::function<void()> fn)
156156
EventLoop::EventLoop(const char* exe_name, LogFn log_fn, void* context)
157157
: m_exe_name(exe_name),
158158
m_io_context(kj::setupAsyncIo()),
159+
m_task_set(new kj::TaskSet(m_error_handler)),
159160
m_log_fn(std::move(log_fn)),
160-
m_context(context),
161-
m_task_set(new kj::TaskSet(m_error_handler))
161+
m_context(context)
162162
{
163163
int fds[2];
164164
KJ_SYSCALL(socketpair(AF_UNIX, SOCK_STREAM, 0, fds));

0 commit comments

Comments
 (0)