diff --git a/include/stdex/hash.hpp b/include/stdex/hash.hpp index 4947ec0d3..9471d4580 100644 --- a/include/stdex/hash.hpp +++ b/include/stdex/hash.hpp @@ -306,7 +306,7 @@ namespace stdex { clear(); } - + virtual void clear() { block_hash::clear(); @@ -315,7 +315,7 @@ namespace stdex m_state[2] = 0x98badcfe; m_state[3] = 0x10325476; } - + virtual void finalize() { static const uint8_t md5_padding[64] = { diff --git a/include/stdex/html.hpp b/include/stdex/html.hpp index 56574165b..1aa7d1776 100644 --- a/include/stdex/html.hpp +++ b/include/stdex/html.hpp @@ -2327,7 +2327,7 @@ namespace stdex return i2; } - /// + /// /// Adds matching inserted tokens before/after the given word in source code /// /// \param[in,out] source Source code diff --git a/include/stdex/string.hpp b/include/stdex/string.hpp index ac00a053e..7885421bc 100644 --- a/include/stdex/string.hpp +++ b/include/stdex/string.hpp @@ -1840,7 +1840,7 @@ namespace stdex /// This allows returned string to be fed into std::unique_ptr for auto release. /// /// \param[in] str String to duplicate. Must be zero-terminated. - /// + /// /// \return Pointer to duplicated string; or nullptr if str is nullptr. Use delete[] operator to free the memory. /// template @@ -1862,7 +1862,7 @@ namespace stdex /// /// \param[in] str String to duplicate. /// \param[in] count Number of code units in str. - /// + /// /// \return Pointer to duplicated string. Use delete[] operator to free the memory. /// template @@ -1882,7 +1882,7 @@ namespace stdex /// This allows returned string to be fed into std::unique_ptr for auto release. /// /// \param[in] str String to duplicate. Must be zero-terminated. - /// + /// /// \return Pointer to duplicated string; or nullptr if str is nullptr. Use delete[] operator to free the memory. /// template @@ -2225,7 +2225,7 @@ namespace stdex { return strto8(str, N, end, radix); } - + /// /// Parse string for a signed 16-bit integer ///