From 7e46fb64013110d75c6cd1b448bbe1dbb073dbbd Mon Sep 17 00:00:00 2001 From: "Harry T. Vennik" Date: Sun, 25 Jun 2017 17:01:59 +0200 Subject: [PATCH] Fixup opEquals method signature to match D specification --- source/ddbus/thin.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ddbus/thin.d b/source/ddbus/thin.d index ed64073..944f3df 100644 --- a/source/ddbus/thin.d +++ b/source/ddbus/thin.d @@ -46,7 +46,7 @@ struct ObjectPath { return hashOf(_value); } - bool opEquals(const ObjectPath b) const { + bool opEquals(ref const typeof(this) b) const pure nothrow @safe { return _value == b._value; }