mirror of
https://github.com/dlang/phobos.git
synced 2025-05-10 22:18:03 +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 {
|
||||
private:
|
||||
invariant() {
|
||||
// @@@BUG@@@ Compiler bug 3986:
|
||||
//assert( data.length == 1 || data[$-1] != 0 );
|
||||
assert( data.length == 1 || data[$-1] != 0 );
|
||||
}
|
||||
BigDigit [] data = ZERO;
|
||||
this(BigDigit [] x) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue