From 36a7d7087f6e5f1ad9c5b97534a4cd3a64e8e7b6 Mon Sep 17 00:00:00 2001 From: John-Colvin Date: Sat, 23 Mar 2013 16:38:57 +0000 Subject: [PATCH] another ref parameter that wasn't needed --- dyaml/reader.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dyaml/reader.d b/dyaml/reader.d index 6ae638e..cdc6b2a 100644 --- a/dyaml/reader.d +++ b/dyaml/reader.d @@ -626,7 +626,7 @@ struct UTFBlockDecoder(size_t bufferSize_) if (bufferSize_ % 2 == 0) * * Returns: True if all the characters are printable, false otherwise. */ -bool printable(const ref dchar[] chars) pure @safe nothrow +bool printable(const dchar[] chars) pure @safe nothrow { foreach(c; chars) {