From 3051c0fe144890cfa97593de7f2920abf5e8672a Mon Sep 17 00:00:00 2001 From: Geod24 Date: Sat, 4 Mar 2023 00:54:03 +0100 Subject: [PATCH] Correct prototype of _d_newclass It's been recently changed from 'in' to 'const', however since it's extern(C), it doesn't matter to us. --- src/msgpack/unpacker.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msgpack/unpacker.d b/src/msgpack/unpacker.d index b6af153..fb29795 100644 --- a/src/msgpack/unpacker.d +++ b/src/msgpack/unpacker.d @@ -15,7 +15,7 @@ import std.container; // for unpack without calling constructor -private extern(C) Object _d_newclass(in ClassInfo); +private extern(C) Object _d_newclass(const ClassInfo); /**