From 24764d0d51cb1764e3396d95971e54b4f3360825 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 19 Oct 2019 16:48:11 -0400 Subject: [PATCH] another deprecation --- dbus.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbus.d b/dbus.d index 652d5b8..508c418 100644 --- a/dbus.d +++ b/dbus.d @@ -532,7 +532,7 @@ struct DBusAny { valueStr = boolean ? "true" : "false"; break; case 'a': - import std.digest.digest : toHexString; + import std.digest : toHexString; if(signature == ['y']) valueStr = "binary(" ~ binaryData.toHexString ~ ')'; @@ -1002,7 +1002,7 @@ struct MessagePattern { return hash; } - bool opEquals(ref const this s) const @safe pure nothrow { + bool opEquals(ref const typeof(this) s) const @safe pure nothrow { return (path == s.path) && (iface == s.iface) && (method == s.method) && (signal == s.signal); } }