boost 日志问题,版本 1.59
Problems with boost log, version 1.59
以下代码在 boost 1.57 中按预期工作:
#include <iostream>
#include <boost/log/trivial.hpp>
struct Foo
{
int d=1;
};
std::ostream& operator<<(std::ostream& out, const Foo& foo)
{
out << "Foo: " << foo.d;
return out;
}
int main()
{
BOOST_LOG_TRIVIAL(info) << Foo();
return EXIT_SUCCESS;
}
使用 boost 1.59 相同的代码失败。第一个 gcc 错误消息是:
error: no match for ‘operator<<’ (operand types are
‘boost::log::v2s_mt_posix::basic_record_ostream’ and ‘Foo’)
文档和发行说明均未记录需要更改的内容。
Live version
看起来问题出在 enable_if_formatting_ostream
结构中。它是在 this commit 中添加的。看起来像
template< typename StreamT, typename R >
struct enable_if_formatting_ostream {};
template< typename CharT, typename TraitsT, typename AllocatorT, typename R >
struct enable_if_formatting_ostream< basic_formatting_ostream< CharT, TraitsT, AllocatorT >, R > { typedef R type; };
现在 operator <<
是
template< typename StreamT, typename T >
inline typename boost::log::aux::enable_if_formatting_ostream< StreamT, StreamT& >::type
operator<< (StreamT& strm, T const& value)
之前
template< typename CharT, typename TraitsT, typename AllocatorT, typename T >
inline basic_formatting_ostream< CharT, TraitsT, AllocatorT >&
operator<< (basic_formatting_ostream< CharT, TraitsT, AllocatorT >& strm, T const& value)
并且由于 record_ostream
派生自 formatting_ostream
编译器可以找到重载,但现在不会,因为使用了 SFINAE 并且结构只有在 formatting_ostream
时才会有 type
typedef用来。 this 可以解决这种情况。
以下代码在 boost 1.57 中按预期工作:
#include <iostream>
#include <boost/log/trivial.hpp>
struct Foo
{
int d=1;
};
std::ostream& operator<<(std::ostream& out, const Foo& foo)
{
out << "Foo: " << foo.d;
return out;
}
int main()
{
BOOST_LOG_TRIVIAL(info) << Foo();
return EXIT_SUCCESS;
}
使用 boost 1.59 相同的代码失败。第一个 gcc 错误消息是:
error: no match for ‘operator<<’ (operand types are ‘boost::log::v2s_mt_posix::basic_record_ostream’ and ‘Foo’)
文档和发行说明均未记录需要更改的内容。
Live version
看起来问题出在 enable_if_formatting_ostream
结构中。它是在 this commit 中添加的。看起来像
template< typename StreamT, typename R >
struct enable_if_formatting_ostream {};
template< typename CharT, typename TraitsT, typename AllocatorT, typename R >
struct enable_if_formatting_ostream< basic_formatting_ostream< CharT, TraitsT, AllocatorT >, R > { typedef R type; };
现在 operator <<
是
template< typename StreamT, typename T >
inline typename boost::log::aux::enable_if_formatting_ostream< StreamT, StreamT& >::type
operator<< (StreamT& strm, T const& value)
之前
template< typename CharT, typename TraitsT, typename AllocatorT, typename T >
inline basic_formatting_ostream< CharT, TraitsT, AllocatorT >&
operator<< (basic_formatting_ostream< CharT, TraitsT, AllocatorT >& strm, T const& value)
并且由于 record_ostream
派生自 formatting_ostream
编译器可以找到重载,但现在不会,因为使用了 SFINAE 并且结构只有在 formatting_ostream
时才会有 type
typedef用来。 this 可以解决这种情况。