$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: john_at_[hidden]
Date: 2007-10-05 05:56:07
Author: johnmaddock
Date: 2007-10-05 05:56:06 EDT (Fri, 05 Oct 2007)
New Revision: 39697
URL: http://svn.boost.org/trac/boost/changeset/39697
Log:
Fix #include case.
Add some needed forward declarations.
Text files modified:
sandbox/math_toolkit/boost/math/bindings/rr.hpp | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
Modified: sandbox/math_toolkit/boost/math/bindings/rr.hpp
==============================================================================
--- sandbox/math_toolkit/boost/math/bindings/rr.hpp (original)
+++ sandbox/math_toolkit/boost/math/bindings/rr.hpp 2007-10-05 05:56:06 EDT (Fri, 05 Oct 2007)
@@ -15,7 +15,7 @@
#include <ostream>
#include <istream>
#include <cmath>
-#include <ntl/rr.h>
+#include <NTL/RR.h>
#ifndef BOOST_MATH_NTL_RR_HPP
#define BOOST_MATH_NTL_RR_HPP
@@ -25,6 +25,11 @@
namespace ntl
{
+class RR;
+
+RR ldexp(RR r, int exp);
+RR frexp(RR r, int* exp);
+
class RR
{
public: