Skip to content

Commit

Permalink
Fix signature of the assignment operator of TaskLocal. Fixes #432.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Dec 9, 2013
1 parent 8383d72 commit 5fd03bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/vibe/core/core.d
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit 5fd03bb

Please sign in to comment.