From 2e293eb6ed094d1327912e92cf75f69201962c30 Mon Sep 17 00:00:00 2001 From: Jack Applegame Date: Sun, 23 Jul 2017 16:56:56 +0300 Subject: [PATCH] Remove extra semicolon --- std/typecons.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/typecons.d b/std/typecons.d index 563e9e93cff..fe813679bfc 100644 --- a/std/typecons.d +++ b/std/typecons.d @@ -307,7 +307,7 @@ private: { count--; } - int val() const { return 4; }; + int val() const { return 4; } } alias UBar = Unique!Bar; UBar g(UBar u)