Trim trailing whitespace

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2025-01-07 15:01:45 +01:00
parent 246f2baa1e
commit fc5a9aacf8
3 changed files with 7 additions and 7 deletions

View File

@ -306,7 +306,7 @@ namespace stdex
{ {
clear(); clear();
} }
virtual void clear() virtual void clear()
{ {
block_hash::clear(); block_hash::clear();
@ -315,7 +315,7 @@ namespace stdex
m_state[2] = 0x98badcfe; m_state[2] = 0x98badcfe;
m_state[3] = 0x10325476; m_state[3] = 0x10325476;
} }
virtual void finalize() virtual void finalize()
{ {
static const uint8_t md5_padding[64] = { static const uint8_t md5_padding[64] = {

View File

@ -2327,7 +2327,7 @@ namespace stdex
return i2; return i2;
} }
/// ///
/// Adds matching inserted tokens before/after the given word in source code /// Adds matching inserted tokens before/after the given word in source code
/// ///
/// \param[in,out] source Source code /// \param[in,out] source Source code

View File

@ -1840,7 +1840,7 @@ namespace stdex
/// This allows returned string to be fed into std::unique_ptr<T> for auto release. /// This allows returned string to be fed into std::unique_ptr<T> for auto release.
/// ///
/// \param[in] str String to duplicate. Must be zero-terminated. /// \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. /// \return Pointer to duplicated string; or nullptr if str is nullptr. Use delete[] operator to free the memory.
/// ///
template <class T> template <class T>
@ -1862,7 +1862,7 @@ namespace stdex
/// ///
/// \param[in] str String to duplicate. /// \param[in] str String to duplicate.
/// \param[in] count Number of code units in str. /// \param[in] count Number of code units in str.
/// ///
/// \return Pointer to duplicated string. Use delete[] operator to free the memory. /// \return Pointer to duplicated string. Use delete[] operator to free the memory.
/// ///
template <class T> template <class T>
@ -1882,7 +1882,7 @@ namespace stdex
/// This allows returned string to be fed into std::unique_ptr<T> for auto release. /// This allows returned string to be fed into std::unique_ptr<T> for auto release.
/// ///
/// \param[in] str String to duplicate. Must be zero-terminated. /// \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. /// \return Pointer to duplicated string; or nullptr if str is nullptr. Use delete[] operator to free the memory.
/// ///
template <class T, size_t N> template <class T, size_t N>
@ -2225,7 +2225,7 @@ namespace stdex
{ {
return strto8<T>(str, N, end, radix); return strto8<T>(str, N, end, radix);
} }
/// ///
/// Parse string for a signed 16-bit integer /// Parse string for a signed 16-bit integer
/// ///