$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: john_at_[hidden]
Date: 2007-11-21 04:46:36
Author: johnmaddock
Date: 2007-11-21 04:46:36 EST (Wed, 21 Nov 2007)
New Revision: 41272
URL: http://svn.boost.org/trac/boost/changeset/41272
Log:
Fix << iostream operator for the NTL bindings.
Text files modified: 
   trunk/boost/math/bindings/rr.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/math/bindings/rr.hpp
==============================================================================
--- trunk/boost/math/bindings/rr.hpp	(original)
+++ trunk/boost/math/bindings/rr.hpp	2007-11-21 04:46:36 EST (Wed, 21 Nov 2007)
@@ -413,7 +413,7 @@
 template <class charT, class traits>
 inline std::basic_istream<charT, traits>& operator>>(std::basic_istream<charT, traits>& is, RR& a)
 {
-   long double v;
+   ::NTL::RR v;
    is >> v;
    a = v;
    return is;