|
Boost-Commit : |
From: john.groups_at_[hidden]
Date: 2008-01-04 20:40:06
Author: jtorjo
Date: 2008-01-04 20:40:06 EST (Fri, 04 Jan 2008)
New Revision: 42465
URL: http://svn.boost.org/trac/boost/changeset/42465
Log:
[logging]
v0.13.3, 4 jan 2008
- can cache messages before initialization of logs
- works on gcc 4.1
Text files modified:
sandbox/logging/boost/logging/detail/cache_before_init.hpp | 4 ++--
sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp | 3 ++-
2 files changed, 4 insertions(+), 3 deletions(-)
Modified: sandbox/logging/boost/logging/detail/cache_before_init.hpp
==============================================================================
--- sandbox/logging/boost/logging/detail/cache_before_init.hpp (original)
+++ sandbox/logging/boost/logging/detail/cache_before_init.hpp 2008-01-04 20:40:06 EST (Fri, 04 Jan 2008)
@@ -112,7 +112,7 @@
return (m_cache.is_using_cache);
}
- template<class writer_type> void turn_cache_off(writer_type & writer) {
+ template<class writer_type> void turn_cache_off(const writer_type & writer) {
if ( !is_cache_turned_on() )
return; // already turned off
@@ -195,7 +195,7 @@
writer(msg);
}
- template<class writer_type> void turn_cache_off(writer_type & writer) {
+ template<class writer_type> void turn_cache_off(const writer_type & writer) {
}
};
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-01-04 20:40:06 EST (Fri, 04 Jan 2008)
@@ -1,7 +1,8 @@
/**
@page page_changelog Changelog
-_at_section changelog_cur_ver Current Version: v0.13.1, 4 jan 2008
+@section changelog_cur_ver Current Version: v0.13.2, 4 jan 2008
+- breaks compilation on gcc4.1
- can cache messages before initialization of logs
- gather classes now have msg_type instead of param (msg_type contains the type of the returned msg - without const or &)
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