Skip to content

Commit 78c2790

Browse files
committed
ditto
1 parent 5309f51 commit 78c2790

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/mir/string_map.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ struct StringMap(T)
10741074
import std.traits: isAssociativeArray, isAggregateType;
10751075
// static if (!isAssociativeArray!(.basicElementType!T) && (!isAggregateType!(.basicElementType!T) || __traits(hasMember, .basicElementType!T, "opCmp")))
10761076
/// `opCmp` Implementation. Doesn't depend on order
1077-
int opCmp()(ref scope const typeof(this) rhs) scope const @trusted // pure nothrow @nogc
1077+
int opCmp()(scope const typeof(this) rhs) scope const @trusted // pure nothrow @nogc
10781078
{
10791079
if (sizediff_t d = length - rhs.length)
10801080
return d < 0 ? -1 : 1;

0 commit comments

Comments
 (0)