mirror of
https://github.com/dlang/phobos.git
synced 2025-05-11 14:41:08 +03:00
Removed workaround for compiler bug 3896, which is now fixed.
This commit is contained in:
parent
bdc1516342
commit
07b8f99d2f
1 changed files with 1 additions and 2 deletions
|
@ -79,8 +79,7 @@ public:
|
||||||
struct BigUint {
|
struct BigUint {
|
||||||
private:
|
private:
|
||||||
invariant() {
|
invariant() {
|
||||||
// @@@BUG@@@ Compiler bug 3986:
|
assert( data.length == 1 || data[$-1] != 0 );
|
||||||
//assert( data.length == 1 || data[$-1] != 0 );
|
|
||||||
}
|
}
|
||||||
BigDigit [] data = ZERO;
|
BigDigit [] data = ZERO;
|
||||||
this(BigDigit [] x) {
|
this(BigDigit [] x) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue