From 64e0573940ca35af161c147032a23ccacb26e728 Mon Sep 17 00:00:00 2001 From: k-hara Date: Sat, 7 Dec 2013 22:26:10 +0900 Subject: [PATCH] fix property enforcement --- std/uni.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/uni.d b/std/uni.d index b5a3b78ea8a..ac2d3d4b04c 100644 --- a/std/uni.d +++ b/std/uni.d @@ -5256,7 +5256,7 @@ private static struct InputRangeString bool empty() @property { return s.empty; } dchar front() @property { return s.front; } - void popFront() @property { s.popFront(); } + void popFront() { s.popFront(); } } unittest