We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0894a43 commit e6488c6Copy full SHA for e6488c6
1 file changed
source/mir/bignum/fixed.d
@@ -283,11 +283,17 @@ struct UInt(size_t size)
283
return 0;
284
}
285
286
+ static if (size >= 64)
287
/// ditto
288
auto opCmp(ulong rhs) const scope
289
{
290
return opCmp(UInt!size(rhs));
291
292
+ else
293
+ auto opCmp(uint rhs) const scope
294
+ {
295
+ return opCmp(UInt!size(rhs));
296
+ }
297
298
/++
299
+/
0 commit comments