diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-05 19:40:16 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-05 19:40:16 +0100 |
commit | a894a799c3e1eb203b363dd79abfea82dd3c666d (patch) | |
tree | 255b55ac7cebd9e43c7ea0ef0e9f886d8642d0a5 /DevTools | |
parent | 4352558bf753b9f860df5b8a3b80526c6ba10497 (diff) | |
download | serenity-a894a799c3e1eb203b363dd79abfea82dd3c666d.zip |
IPCCompiler: Remove outdated FIXME
We actually do support longer messages now since the message encoder
grows dynamically.
Diffstat (limited to 'DevTools')
-rw-r--r-- | DevTools/IPCCompiler/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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();"; |