mirror of
https://github.com/taglib/taglib.git
synced 2025-11-16 22:52:57 -05:00
Stop determining whether to enable C++11 features at compile time
This commit is contained in:
@ -119,6 +119,8 @@ namespace TagLib
|
||||
|
||||
/*!
|
||||
* Moves the contents of \a other into this item.
|
||||
*
|
||||
* \note Not available unless TAGLIB_USE_CXX11 macro is defined.
|
||||
*/
|
||||
ASF::Attribute &operator=(Attribute &&other);
|
||||
|
||||
|
||||
@ -111,6 +111,8 @@ namespace TagLib
|
||||
|
||||
/*!
|
||||
* Constructs an picture equivalent to \a other.
|
||||
*
|
||||
* \note Not available unless TAGLIB_USE_CXX11 macro is defined.
|
||||
*/
|
||||
Picture(Picture &&other);
|
||||
|
||||
@ -130,7 +132,9 @@ namespace TagLib
|
||||
|
||||
/*!
|
||||
* Moves the contents of \a other into this picture.
|
||||
*/
|
||||
*
|
||||
* \note Not available unless TAGLIB_USE_CXX11 macro is defined.
|
||||
*/
|
||||
Picture& operator=(Picture &&other);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user