Merge pull request #1189 from 9rnsr/fix_ctor_qual

Change Nullable ctor to inout
This commit is contained in:
Alex Rønne Petersen 2013-03-06 22:14:51 -08:00
commit 93c724f2a3

View file

@ -1169,7 +1169,7 @@ struct Nullable(T)
/** /**
Constructor initializing $(D this) with $(D value). Constructor initializing $(D this) with $(D value).
*/ */
this()(T value) this()(T value) inout
{ {
_value = value; _value = value;
_isNull = false; _isNull = false;