mirror of https://github.com/adamdruppe/arsd.git
another deprecation
This commit is contained in:
parent
35956265f6
commit
24764d0d51
4
dbus.d
4
dbus.d
|
@ -532,7 +532,7 @@ struct DBusAny {
|
||||||
valueStr = boolean ? "true" : "false";
|
valueStr = boolean ? "true" : "false";
|
||||||
break;
|
break;
|
||||||
case 'a':
|
case 'a':
|
||||||
import std.digest.digest : toHexString;
|
import std.digest : toHexString;
|
||||||
|
|
||||||
if(signature == ['y'])
|
if(signature == ['y'])
|
||||||
valueStr = "binary(" ~ binaryData.toHexString ~ ')';
|
valueStr = "binary(" ~ binaryData.toHexString ~ ')';
|
||||||
|
@ -1002,7 +1002,7 @@ struct MessagePattern {
|
||||||
return hash;
|
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);
|
return (path == s.path) && (iface == s.iface) && (method == s.method) && (signal == s.signal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue