From 526d4571a7c1ff01dc2729351969445b8f7dfb40 Mon Sep 17 00:00:00 2001 From: k-hara Date: Thu, 7 Mar 2013 13:27:33 +0900 Subject: [PATCH] Change Nullable ctor to inout --- std/typecons.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/typecons.d b/std/typecons.d index 29a6d56a4..bf8a22f86 100644 --- a/std/typecons.d +++ b/std/typecons.d @@ -1169,7 +1169,7 @@ struct Nullable(T) /** Constructor initializing $(D this) with $(D value). */ - this()(T value) + this()(T value) inout { _value = value; _isNull = false;