From 0e4ecca33621b5f7df1a74c48e3e6da920889627 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 19 Dec 2020 11:30:02 +0100 Subject: LibIPC: Remove use of ByteBuffer::wrap() ByteBuffer::wrap() was useful before we had Span. Let's see if we can't get rid of some more ByteBuffer wrapping. --- DevTools/IPCCompiler/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'DevTools') diff --git a/DevTools/IPCCompiler/main.cpp b/DevTools/IPCCompiler/main.cpp index 586f93cfe9..165899ea1e 100644 --- a/DevTools/IPCCompiler/main.cpp +++ b/DevTools/IPCCompiler/main.cpp @@ -24,7 +24,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include #include #include #include @@ -437,7 +436,7 @@ public: static String static_name() { return "@endpoint.name@"; } virtual String name() const override { return "@endpoint.name@"; } - static OwnPtr decode_message(const ByteBuffer& buffer, int sockfd) + static OwnPtr decode_message(ReadonlyBytes buffer, int sockfd) { InputMemoryStream stream { buffer }; i32 message_endpoint_magic = 0; -- cgit v1.2.3