2
0
mirror of https://github.com/boostorg/log.git synced 2026-02-10 23:42:22 +00:00

Merged latest changes from trunk.

[SVN r85461]
This commit is contained in:
Andrey Semashev
2013-08-25 14:20:22 +00:00
parent cdd85fc887
commit 5204873fa9
294 changed files with 3184 additions and 1462 deletions

View File

@@ -10,7 +10,7 @@
* \date 14.11.2012
*
* \brief This header is the Boost.Log library implementation, see the library documentation
* at http://www.boost.org/libs/log/doc/log.html.
* at http://www.boost.org/doc/libs/release/libs/log/doc/html/index.html.
*/
#include <string>
@@ -113,7 +113,7 @@ private:
formatters m_formatters;
public:
BOOST_LOG_DEFAULTED_FUNCTION(named_scope_formatter(), {})
BOOST_DEFAULTED_FUNCTION(named_scope_formatter(), {})
named_scope_formatter(named_scope_formatter const& that) : m_formatters(that.m_formatters) {}
named_scope_formatter(BOOST_RV_REF(named_scope_formatter) that) { m_formatters.swap(that.m_formatters); }