Let compiler define extra special member functions

This commit is contained in:
Chris Thrasher 2023-08-05 13:44:30 -06:00
parent 669d9f53bc
commit 733a0a8d6d
2 changed files with 0 additions and 40 deletions

View File

@ -86,30 +86,6 @@ public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Text(Font&& font, String string = "", unsigned int characterSize = 30) = delete; Text(Font&& font, String string = "", unsigned int characterSize = 30) = delete;
////////////////////////////////////////////////////////////
/// \brief Copy constructor
///
////////////////////////////////////////////////////////////
Text(const Text&);
////////////////////////////////////////////////////////////
/// \brief Copy assignment
///
////////////////////////////////////////////////////////////
Text& operator=(const Text&);
////////////////////////////////////////////////////////////
/// \brief Move constructor
///
////////////////////////////////////////////////////////////
Text(Text&&) noexcept;
////////////////////////////////////////////////////////////
/// \brief Move assignment
///
////////////////////////////////////////////////////////////
Text& operator=(Text&&) noexcept;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Set the text's string /// \brief Set the text's string
/// ///

View File

@ -104,22 +104,6 @@ m_characterSize(characterSize)
} }
////////////////////////////////////////////////////////////
Text::Text(const Text&) = default;
////////////////////////////////////////////////////////////
Text& Text::operator=(const Text&) = default;
////////////////////////////////////////////////////////////
Text::Text(Text&&) noexcept = default;
////////////////////////////////////////////////////////////
Text& Text::operator=(Text&&) noexcept = default;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
void Text::setString(const String& string) void Text::setString(const String& string)
{ {