From 3948924124385430fd86e5c986d2f2c7c20f0c86 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sun, 4 Sep 2016 17:58:54 +0200 Subject: [PATCH] Doxygen documentation update --- include/WinStd/Hex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/WinStd/Hex.h b/include/WinStd/Hex.h index 872dfc0e..e9d10898 100644 --- a/include/WinStd/Hex.h +++ b/include/WinStd/Hex.h @@ -117,9 +117,9 @@ namespace winstd /// Decodes one block of information, and _appends_ it to the output /// /// \param[out] out Output + /// \param[out] is_last Was this the last block of data? Actually, is this block of data complete? /// \param[in ] data Data to decode /// \param[in ] size Length of `data` in bytes - /// \param[in ] is_last Was this the last block of data? Actually, is this block of data complete? /// template inline void decode(_Out_ std::vector<_Ty, _Ax> &out, _Out_ bool &is_last, _In_z_count_(size) const _Tchr *data, _In_ size_t size)