|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r84059 - trunk/boost/geometry/index/detail
From: adam.wulkiewicz_at_[hidden]
Date: 2013-04-27 19:22:05
Author: awulkiew
Date: 2013-04-27 19:22:04 EDT (Sat, 27 Apr 2013)
New Revision: 84059
URL: http://svn.boost.org/trac/boost/changeset/84059
Log:
geometry.index: fixed GCC compilation error related to initialization of pointer to function wrapped in the 'satisfies' predicate.
Text files modified:
trunk/boost/geometry/index/detail/predicates.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/geometry/index/detail/predicates.hpp
==============================================================================
--- trunk/boost/geometry/index/detail/predicates.hpp (original)
+++ trunk/boost/geometry/index/detail/predicates.hpp 2013-04-27 19:22:04 EDT (Sat, 27 Apr 2013)
@@ -25,7 +25,7 @@
template <typename Fun, bool IsFunction>
struct satisfies_impl
{
- satisfies_impl(Fun f) : fun(&f) {}
+ satisfies_impl(Fun f) : fun(f) {}
Fun * fun;
};
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