From 5fd03bbe649f262ac05366107e86f1a165100b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 9 Dec 2013 18:11:23 +0100 Subject: [PATCH] Fix signature of the assignment operator of TaskLocal. Fixes #432. --- source/vibe/core/core.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/vibe/core/core.d b/source/vibe/core/core.d index f58c33f076..bd8232d056 100644 --- a/source/vibe/core/core.d +++ b/source/vibe/core/core.d @@ -499,7 +499,7 @@ struct TaskLocal(T) @disable this(this); - void opAssign(bool value) { this.storage = value; } + void opAssign(T value) { this.storage = value; } @property ref T storage() {