Boost logo

Boost-Commit :

From: john.groups_at_[hidden]
Date: 2008-03-09 08:24:57


Author: jtorjo
Date: 2008-03-09 08:24:56 EDT (Sun, 09 Mar 2008)
New Revision: 43547
URL: http://svn.boost.org/trac/boost/changeset/43547

Log:
[logging]
v0.23.1, 9 march 2008
- solved bug: formatter::syslog derived from an undefined class
Text files modified:
   sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp | 6 +++++-
   sandbox/logging/boost/logging/format/destination/syslog.hpp | 2 +-
   2 files changed, 6 insertions(+), 2 deletions(-)

Modified: sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp
==============================================================================
--- sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp (original)
+++ sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp 2008-03-09 08:24:56 EDT (Sun, 09 Mar 2008)
@@ -1,7 +1,11 @@
 /**
 @page page_changelog Changelog
 
-_at_section changelog_cur_ver Current Version: v0.22.10, 26 feb 2008
+@section changelog_cur_ver Current Version: v0.23.1, 9 march 2008
+- solved bug: formatter::syslog derived from an undefined class
+
+
+v0.22.10, 26 feb 2008
 - solved bug: using scoped logs when using tags : used to generate compile time error
 - added few fixes, due to feedback review
   - out_of_the_box usage

Modified: sandbox/logging/boost/logging/format/destination/syslog.hpp
==============================================================================
--- sandbox/logging/boost/logging/format/destination/syslog.hpp (original)
+++ sandbox/logging/boost/logging/format/destination/syslog.hpp 2008-03-09 08:24:56 EDT (Sun, 09 Mar 2008)
@@ -58,7 +58,7 @@
 
 See @ref boost::logging::tag "how to use tags".
 */
-struct syslog : is_generic, formatter::uses_tag< formatter::level, ::boost::logging::tag::level >, boost::logging::op_equal::always_equal {
+struct syslog : is_generic, formatter::uses_tag< syslog, ::boost::logging::tag::level >, boost::logging::op_equal::always_equal {
     template<class msg_type, class tag_type> void write_tag(msg_type & str, const tag_type & tag) const {
         ::syslog( level_to_syslog_level(tag.val) , as_string(str).c_str() );
     }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk