Let compiler define extra special member functions
This commit is contained in:
parent
669d9f53bc
commit
733a0a8d6d
@ -86,30 +86,6 @@ public:
|
||||
////////////////////////////////////////////////////////////
|
||||
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
|
||||
///
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user