Stop determining whether to enable C++11 features at compile time

This commit is contained in:
Tsuda Kageyu
2013-03-20 08:39:13 +09:00
parent 96cf908232
commit cab68e2152
12 changed files with 77 additions and 31 deletions

View File

@ -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);

View File

@ -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