From ee0a4499778891ee5673ee0c3c424306280e1bfa Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Thu, 31 Jul 2014 03:12:25 +0200 Subject: [PATCH] Style. --- test/src/inputoutput.d | 46 +++++++++++++++++------------------------- 1 file changed, 19 insertions(+), 27 deletions(-) diff --git a/test/src/inputoutput.d b/test/src/inputoutput.d index a549ebe..246c751 100644 --- a/test/src/inputoutput.d +++ b/test/src/inputoutput.d @@ -1,5 +1,5 @@ -// Copyright Ferdinand Majerech 2011. +// Copyright Ferdinand Majerech 2011-2014. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) @@ -16,13 +16,11 @@ import dyaml.testcommon; alias std.system.endian endian; -/** - * Get an UTF-16 byte order mark. - * - * Params: wrong = Get the incorrect BOM for this system. - * - * Returns: UTF-16 byte order mark. - */ +/// Get an UTF-16 byte order mark. +/// +/// Params: wrong = Get the incorrect BOM for this system. +/// +/// Returns: UTF-16 byte order mark. wchar bom16(bool wrong = false) pure { wchar little = *(cast(wchar*)ByteOrderMarks[BOM.UTF16LE]); @@ -31,13 +29,11 @@ wchar bom16(bool wrong = false) pure return endian == Endian.littleEndian ? big : little; } -/** - * Get an UTF-32 byte order mark. - * - * Params: wrong = Get the incorrect BOM for this system. - * - * Returns: UTF-32 byte order mark. - */ +/// Get an UTF-32 byte order mark. +/// +/// Params: wrong = Get the incorrect BOM for this system. +/// +/// Returns: UTF-32 byte order mark. dchar bom32(bool wrong = false) pure { dchar little = *(cast(dchar*)ByteOrderMarks[BOM.UTF32LE]); @@ -46,12 +42,10 @@ dchar bom32(bool wrong = false) pure return endian == Endian.littleEndian ? big : little; } -/** - * Unicode input unittest. Tests various encodings. - * - * Params: verbose = Print verbose output? - * unicodeFilename = File name to read from. - */ +/// Unicode input unittest. Tests various encodings. +/// +/// Params: verbose = Print verbose output? +/// unicodeFilename = File name to read from. void testUnicodeInput(bool verbose, string unicodeFilename) { string data = readText(unicodeFilename); @@ -68,12 +62,10 @@ void testUnicodeInput(bool verbose, string unicodeFilename) } } -/** - * Unicode input error unittest. Tests various encodings with incorrect BOMs. - * - * Params: verbose = Print verbose output? - * unicodeFilename = File name to read from. - */ +/// Unicode input error unittest. Tests various encodings with incorrect BOMs. +/// +/// Params: verbose = Print verbose output? +/// unicodeFilename = File name to read from. void testUnicodeInputErrors(bool verbose, string unicodeFilename) { string data = readText(unicodeFilename);