diff --git a/std/internal/math/biguintcore.d b/std/internal/math/biguintcore.d index 01d3f020c..ef56dc451 100644 --- a/std/internal/math/biguintcore.d +++ b/std/internal/math/biguintcore.d @@ -109,7 +109,7 @@ private: } public: // Length in uints - size_t uintLength() pure nothrow const + @property size_t uintLength() pure nothrow const { static if (BigDigit.sizeof == uint.sizeof) { @@ -121,7 +121,7 @@ public: ((data[$-1] & 0xFFFF_FFFF_0000_0000L) ? 1 : 0); } } - size_t ulongLength() pure nothrow const + @property size_t ulongLength() pure nothrow const { static if (BigDigit.sizeof == uint.sizeof) {