From a894a799c3e1eb203b363dd79abfea82dd3c666d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 5 Feb 2020 19:40:16 +0100 Subject: [PATCH] IPCCompiler: Remove outdated FIXME We actually do support longer messages now since the message encoder grows dynamically. --- DevTools/IPCCompiler/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/DevTools/IPCCompiler/main.cpp b/DevTools/IPCCompiler/main.cpp index c119aa42d6..78e50612dc 100644 --- a/DevTools/IPCCompiler/main.cpp +++ b/DevTools/IPCCompiler/main.cpp @@ -387,7 +387,6 @@ int main(int argc, char** argv) dbg() << " }"; dbg() << " virtual IMessageBuffer encode() const override"; dbg() << " {"; - // FIXME: Support longer messages: dbg() << " IMessageBuffer buffer;"; dbg() << " IEncoder stream(buffer);"; dbg() << " stream << endpoint_magic();";