From 6a5ea71289f332d9450b10e801960c4bdbe3c4cb Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Tue, 11 Apr 2023 19:54:25 +0000 Subject: [PATCH] stream: Add a TODO about cleaning up struct --- include/stream.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/stream.h b/include/stream.h index 6b1f8cf..706a842 100644 --- a/include/stream.h +++ b/include/stream.h @@ -72,6 +72,8 @@ struct stream_impl { void (*exec_and_send)(struct stream*, stream_exec_fn, void* userdata); }; +// TODO: Move some of these struct members into their respective implementation +// classes. struct stream { struct stream_impl *impl;