Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83787 - trunk/boost/geometry/strategies/transform
From: barend.gehrels_at_[hidden]
Date: 2013-04-06 19:03:39


Author: barendgehrels
Date: 2013-04-06 19:03:38 EDT (Sat, 06 Apr 2013)
New Revision: 83787
URL: http://svn.boost.org/trac/boost/changeset/83787

Log:
[geometry] Ticket #7465 Fixed, made 2 constructors public
Text files modified:
   trunk/boost/geometry/strategies/transform/matrix_transformers.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/geometry/strategies/transform/matrix_transformers.hpp
==============================================================================
--- trunk/boost/geometry/strategies/transform/matrix_transformers.hpp (original)
+++ trunk/boost/geometry/strategies/transform/matrix_transformers.hpp 2013-04-06 19:03:38 EDT (Sat, 06 Apr 2013)
@@ -147,6 +147,7 @@
     typedef boost::numeric::ublas::matrix<coordinate_type> matrix_type;
     matrix_type m_matrix;
 
+public :
     inline ublas_transformer(
                 ct const& m_0_0, ct const& m_0_1, ct const& m_0_2, ct const& m_0_3,
                 ct const& m_1_0, ct const& m_1_1, ct const& m_1_2, ct const& m_1_3,
@@ -163,8 +164,6 @@
 
     inline ublas_transformer() : m_matrix(4, 4) {}
 
-public :
-
     inline bool apply(P1 const& p1, P2& p2) const
     {
         coordinate_type const& c1 = get<0>(p1);
@@ -297,6 +296,7 @@
 {
     typedef typename select_coordinate_type<P1, P2>::type coordinate_type;
 
+public :
     inline scale_transformer(coordinate_type const& scale_x,
                 coordinate_type const& scale_y,
                 coordinate_type const& scale_z)


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