$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r49718 - sandbox/chrono/boost
From: bdawes_at_[hidden]
Date: 2008-11-13 11:33:19
Author: bemandawes
Date: 2008-11-13 11:33:19 EST (Thu, 13 Nov 2008)
New Revision: 49718
URL: http://svn.boost.org/trac/boost/changeset/49718
Log:
Chrono: add missing declspec and abs_suffix.hpp
Text files modified: 
   sandbox/chrono/boost/chrono.hpp |     6 ++++--                                  
   1 files changed, 4 insertions(+), 2 deletions(-)
Modified: sandbox/chrono/boost/chrono.hpp
==============================================================================
--- sandbox/chrono/boost/chrono.hpp	(original)
+++ sandbox/chrono/boost/chrono.hpp	2008-11-13 11:33:19 EST (Thu, 13 Nov 2008)
@@ -863,7 +863,7 @@
 //      20.9.5.1 Class system_clock [time.clock.system]                       //
 //----------------------------------------------------------------------------//
 
-  class system_clock
+  class BOOST_CHRONO_DECL system_clock
   {
   public:
       typedef BOOST_SYSTEM_CLOCK_DURATION          duration;
@@ -882,7 +882,7 @@
 //      20.9.5.2 Class monotonic_clock [time.clock.monotonic]                 //
 //----------------------------------------------------------------------------//
 
-  class monotonic_clock
+  class BOOST_CHRONO_DECL monotonic_clock
   {
   public:
       typedef nanoseconds                          duration;
@@ -904,4 +904,6 @@
 } // namespace chrono
 } // namespace boost
 
+#include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
+
 #endif // BOOST_CHRONO_HPP