IPCCompiler: Remove invalid state from IPC message classes

At some point, we stopped ever constructing invalid messages. This makes
that clearer, and will allow us to stop requiring that IPC arguments be
default-constructible.
This commit is contained in:
Sam Atkins 2025-02-17 15:12:28 +00:00 committed by Tim Flynn
commit b3b7e76c10
Notes: github-actions[bot] 2025-02-17 16:38:44 +00:00
2 changed files with 1 additions and 10 deletions

View file

@ -69,7 +69,6 @@ public:
virtual u32 endpoint_magic() const = 0;
virtual int message_id() const = 0;
virtual char const* message_name() const = 0;
virtual bool valid() const = 0;
virtual ErrorOr<MessageBuffer> encode() const = 0;
protected: