another deprecation

This commit is contained in:
Adam D. Ruppe 2019-10-19 16:48:11 -04:00
parent 35956265f6
commit 24764d0d51
1 changed files with 2 additions and 2 deletions

4
dbus.d
View File

@ -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);
}
}