2
0
mirror of https://github.com/boostorg/log.git synced 2026-02-12 12:12:17 +00:00

Fixes 11459. Added function exports.

This commit is contained in:
Andrey Semashev
2015-07-10 22:53:02 +03:00
parent 8d63fe138a
commit 2d8378a6e2
9 changed files with 15 additions and 15 deletions

View File

@@ -433,7 +433,7 @@ private:
//! The function registers a user-defined formatter factory
template< typename CharT >
void register_formatter_factory(attribute_name const& name, shared_ptr< formatter_factory< CharT > > const& factory)
BOOST_LOG_SETUP_API void register_formatter_factory(attribute_name const& name, shared_ptr< formatter_factory< CharT > > const& factory)
{
BOOST_ASSERT(!!name);
BOOST_ASSERT(!!factory);
@@ -445,7 +445,7 @@ void register_formatter_factory(attribute_name const& name, shared_ptr< formatte
//! The function parses a formatter from the string
template< typename CharT >
basic_formatter< CharT > parse_formatter(const CharT* begin, const CharT* end)
BOOST_LOG_SETUP_API basic_formatter< CharT > parse_formatter(const CharT* begin, const CharT* end)
{
typedef CharT char_type;