2
0
mirror of https://github.com/boostorg/log.git synced 2026-02-09 11:12:38 +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

@@ -475,7 +475,7 @@ private:
//! The function registers a filter factory object for the specified attribute name
template< typename CharT >
void register_filter_factory(attribute_name const& name, shared_ptr< filter_factory< CharT > > const& factory)
BOOST_LOG_SETUP_API void register_filter_factory(attribute_name const& name, shared_ptr< filter_factory< CharT > > const& factory)
{
BOOST_ASSERT(!!name);
BOOST_ASSERT(!!factory);
@@ -488,7 +488,7 @@ void register_filter_factory(attribute_name const& name, shared_ptr< filter_fact
//! The function parses a filter from the string
template< typename CharT >
filter parse_filter(const CharT* begin, const CharT* end)
BOOST_LOG_SETUP_API filter parse_filter(const CharT* begin, const CharT* end)
{
typedef CharT char_type;
typedef log::aux::encoding_specific< typename log::aux::encoding< char_type >::type > encoding_specific;