Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r48883 - trunk/boost/math/concepts
From: john_at_[hidden]
Date: 2008-09-19 05:12:33


Author: johnmaddock
Date: 2008-09-19 05:12:33 EDT (Fri, 19 Sep 2008)
New Revision: 48883
URL: http://svn.boost.org/trac/boost/changeset/48883

Log:
Fix missing #include.
Text files modified:
   trunk/boost/math/concepts/real_concept.hpp | 8 ++++++--
   1 files changed, 6 insertions(+), 2 deletions(-)

Modified: trunk/boost/math/concepts/real_concept.hpp
==============================================================================
--- trunk/boost/math/concepts/real_concept.hpp (original)
+++ trunk/boost/math/concepts/real_concept.hpp 2008-09-19 05:12:33 EDT (Fri, 19 Sep 2008)
@@ -20,6 +20,9 @@
 // but note minor additions are needed - see ntl.diff and documentation
 // "Using With NTL - a High-Precision Floating-Point Library".
 
+#ifndef BOOST_MATH_REAL_CONCEPT_HPP
+#define BOOST_MATH_REAL_CONCEPT_HPP
+
 #include <boost/config.hpp>
 #include <boost/limits.hpp>
 #include <boost/math/special_functions/round.hpp>
@@ -35,8 +38,9 @@
 #include <boost/config/no_tr1/cmath.hpp>
 #include <math.h> // fmodl
 
-#ifndef BOOST_MATH_REAL_CONCEPT_HPP
-#define BOOST_MATH_REAL_CONCEPT_HPP
+#if defined(__SGI_STL_PORT) || defined(_RWSTD_VER) || defined(__LIBCOMO__)
+# include <cstdio>
+#endif
 
 namespace boost{ namespace math{
 


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