$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77205 - in branches/release: . boost boost/numeric/interval/detail
From: juergen.hunold_at_[hidden]
Date: 2012-03-04 05:45:11
Author: jhunold
Date: 2012-03-04 05:45:11 EST (Sun, 04 Mar 2012)
New Revision: 77205
URL: http://svn.boost.org/trac/boost/changeset/77205
Log:
Merge 77144 from ^/trunk
  ------------------------------------------------------------------------
  r77144 | jhunold | 2012-02-29 21:49:52 +0100 (Mi, 29 Feb 2012) | 2 lines
  
  Fix #5519: Use correct predefined _WIN64
  
  ------------------------------------------------------------------------
Properties modified: 
   branches/release/   (props changed)
   branches/release/boost/   (props changed)
Text files modified: 
   branches/release/boost/numeric/interval/detail/msvc_rounding_control.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/boost/numeric/interval/detail/msvc_rounding_control.hpp
==============================================================================
--- branches/release/boost/numeric/interval/detail/msvc_rounding_control.hpp	(original)
+++ branches/release/boost/numeric/interval/detail/msvc_rounding_control.hpp	2012-03-04 05:45:11 EST (Sun, 04 Mar 2012)
@@ -25,7 +25,7 @@
 namespace interval_lib {
 namespace detail {
 
-#if BOOST_MSVC < 1400 || defined(WIN64)
+#if BOOST_MSVC < 1400 || defined(_WIN64)
 extern "C" { double rint(double); }
 #else
 inline double rint(double x)