Skip to content

Commit

Permalink
Merge pull request #1756 from 9rnsr/enforceProp
Browse files Browse the repository at this point in the history
fix property enforcement
  • Loading branch information
9rnsr committed Dec 7, 2013
2 parents 4d3a2c4 + 64e0573 commit f581d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/uni.d
Expand Up @@ -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
Expand Down

0 comments on commit f581d2c

Please sign in to comment.