Boost logo

Boost-Commit :

From: john.groups_at_[hidden]
Date: 2007-10-31 05:13:59


Author: jtorjo
Date: 2007-10-31 05:13:59 EDT (Wed, 31 Oct 2007)
New Revision: 40620
URL: http://svn.boost.org/trac/boost/changeset/40620

Log:
[logging]
v0.9.9, 31 oct 2007
- fixed fastest*.cpp scenarios so that they compile. Many thanks to Martin Baeker!

Text files modified:
   sandbox/logging/boost/logging/changelog.hpp | 3 +++
   sandbox/logging/lib/logging/samples/scenarios/fastest_no_ostr_like.cpp | 2 +-
   sandbox/logging/lib/logging/samples/scenarios/fastest_use_ostr_like.cpp | 2 +-
   sandbox/logging/lib/logging/samples/vc8/loggingvc8/loggingvc8.vcproj | 2 +-
   4 files changed, 6 insertions(+), 3 deletions(-)

Modified: sandbox/logging/boost/logging/changelog.hpp
==============================================================================
--- sandbox/logging/boost/logging/changelog.hpp (original)
+++ sandbox/logging/boost/logging/changelog.hpp 2007-10-31 05:13:59 EDT (Wed, 31 Oct 2007)
@@ -1,6 +1,9 @@
 /**
 @page page_changelog Changelog
 
+v0.9.9, 31 oct 2007
+- fixed fastest*.cpp scenarios so that they compile. Many thanks to Martin Baeker!
+
 v0.9.8, 31 oct 2007
 - added small things to make it compile with gcc 4.1 and 4.3
   (note: I just solved some errors that were pointed out by Jens Seidel, not sure if this fixed everything)

Modified: sandbox/logging/lib/logging/samples/scenarios/fastest_no_ostr_like.cpp
==============================================================================
--- sandbox/logging/lib/logging/samples/scenarios/fastest_no_ostr_like.cpp (original)
+++ sandbox/logging/lib/logging/samples/scenarios/fastest_no_ostr_like.cpp 2007-10-31 05:13:59 EDT (Wed, 31 Oct 2007)
@@ -74,7 +74,7 @@
 BOOST_DEFINE_LOG_FILTER(g_log_filter, filter::no_ts )
 
 // Step 3: declare which loggers you'll use
-BOOST_DECLARE_LOG(g_log_app, app_log_type)
+BOOST_DEFINE_LOG(g_log_app, app_log_type)
 BOOST_DEFINE_LOG_WITH_ARGS( g_log_err, err_log_type, ("err.txt") )
 
 // FIXME most likely I can use BOOST_LOG_USE_IF_FILTER

Modified: sandbox/logging/lib/logging/samples/scenarios/fastest_use_ostr_like.cpp
==============================================================================
--- sandbox/logging/lib/logging/samples/scenarios/fastest_use_ostr_like.cpp (original)
+++ sandbox/logging/lib/logging/samples/scenarios/fastest_use_ostr_like.cpp 2007-10-31 05:13:59 EDT (Wed, 31 Oct 2007)
@@ -68,7 +68,7 @@
 BOOST_DEFINE_LOG_FILTER(g_log_filter, filter::no_ts )
 
 // Step 3: declare which loggers you'll use
-BOOST_DECLARE_LOG(g_log_app, app_log_type );
+BOOST_DEFINE_LOG(g_log_app, app_log_type );
 BOOST_DEFINE_LOG_WITH_ARGS( g_log_err, err_log_type, ("err.txt") )
 
 // Step 4: define the macros through which you'll log

Modified: sandbox/logging/lib/logging/samples/vc8/loggingvc8/loggingvc8.vcproj
==============================================================================
--- sandbox/logging/lib/logging/samples/vc8/loggingvc8/loggingvc8.vcproj (original)
+++ sandbox/logging/lib/logging/samples/vc8/loggingvc8/loggingvc8.vcproj 2007-10-31 05:13:59 EDT (Wed, 31 Oct 2007)
@@ -509,6 +509,7 @@
>
                                 <FileConfiguration
                                         Name="Test|Win32"
+ ExcludedFromBuild="true"
>
                                         <Tool
                                                 Name="VCCLCompilerTool"
@@ -924,7 +925,6 @@
>
                                 <FileConfiguration
                                         Name="Test|Win32"
- ExcludedFromBuild="true"
>
                                         <Tool
                                                 Name="VCCLCompilerTool"


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