Removed redundant member function

This commit is contained in:
John Wellbelove 2025-10-10 09:51:11 +01:00
parent 85fc48302d
commit 115e0e91a2

View File

@ -730,17 +730,6 @@ namespace etl
append_impl(begin(), str, false, false);
}
//*********************************************************************
/// Assigns values to the string.
/// Truncates if the string does not have enough free space.
///\param other The other string.
//*********************************************************************
template <size_t Size>
void assign(const value_type (&literal)[Size])
{
append_impl(begin(), literal, Size, false, false);
}
//*********************************************************************
/// Assigns values to the string.
/// Truncates if the string does not have enough free space.