$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73242 - sandbox/e_float/libs/e_float/src/utility
From: e_float_at_[hidden]
Date: 2011-07-19 16:00:22
Author: christopher_kormanyos
Date: 2011-07-19 16:00:21 EDT (Tue, 19 Jul 2011)
New Revision: 73242
URL: http://svn.boost.org/trac/boost/changeset/73242
Log:
Corrected the scope resolution of function
- from: "function"
- to:   "Function<T>::function"
Text files modified: 
   sandbox/e_float/libs/e_float/src/utility/util_trapezoid.h |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/e_float/libs/e_float/src/utility/util_trapezoid.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/utility/util_trapezoid.h	(original)
+++ sandbox/e_float/libs/e_float/src/utility/util_trapezoid.h	2011-07-19 16:00:21 EDT (Tue, 19 Jul 2011)
@@ -38,7 +38,7 @@
         static const T one  = T(1);
         static const T half = T(0.5);
 
-        T I = (function(a) + function(b)) * (h * half);
+        T I = (Function<T>::function(a) + Function<T>::function(b)) * (h * half);
 
         for(INT32 k = static_cast<INT32>(0); k < static_cast<INT32>(31); k++)
         {