Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80911 - in sandbox/SOC/2007/visualization/boost/svg_plot: detail impl
From: pbristow_at_[hidden]
Date: 2012-10-09 05:03:08


Author: pbristow
Date: 2012-10-09 05:03:06 EDT (Tue, 09 Oct 2012)
New Revision: 80911
URL: http://svn.boost.org/trac/boost/changeset/80911

Log:
More attempts to reduce warnings OK MSVC 9 Oct 12
Text files modified:
   sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp | 6 +++---
   sandbox/SOC/2007/visualization/boost/svg_plot/impl/axis_plot_frame.ipp | 2 +-
   2 files changed, 4 insertions(+), 4 deletions(-)

Modified: sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp
==============================================================================
--- sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp (original)
+++ sandbox/SOC/2007/visualization/boost/svg_plot/detail/axis_plot_frame.hpp 2012-10-09 05:03:06 EDT (Tue, 09 Oct 2012)
@@ -610,8 +610,8 @@
         // class axis_plot_frame Member function Definitions (for .ipp file):
 
 
- template <class Derived>/*! \tparam Derived plot class, svg_1d_plot or svg_2d_plot or svg_boxplot. */
- template <class T> /*! \tparam T an STL container: array, vector, list, map ... */
+ template <typename Derived>/*! \tparam Derived plot class, svg_1d_plot or svg_2d_plot or svg_boxplot. */
+ template <typename T> /*! \tparam T an STL container: array, vector, list, map ... */
           Derived& axis_plot_frame<Derived>::x_autoscale(const T& begin, const T& end);
 
           template <class Derived>
@@ -621,7 +621,7 @@
           template <class Derived>
           Derived& axis_plot_frame<Derived>::size(unsigned int x, unsigned int y);
 
- template <class Derived>
+ template <class Derived>
           std::pair<double, double> axis_plot_frame<Derived>::size();
           template <class Derived>
           unsigned int axis_plot_frame<Derived>::image_x_size(); //!< Obselete - deprecated.

Modified: sandbox/SOC/2007/visualization/boost/svg_plot/impl/axis_plot_frame.ipp
==============================================================================
--- sandbox/SOC/2007/visualization/boost/svg_plot/impl/axis_plot_frame.ipp (original)
+++ sandbox/SOC/2007/visualization/boost/svg_plot/impl/axis_plot_frame.ipp 2012-10-09 05:03:06 EDT (Tue, 09 Oct 2012)
@@ -1844,7 +1844,7 @@
             return derived();
           } // x_autoscale(const T& begin, const T& end)
 
- template <class Derived>
+ template <class Derived>
           template <class T> // T an STL container: array, vector...
           Derived& axis_plot_frame<Derived>::x_autoscale(const T& container) // Use whole 1D data series.
           { //! Data series (all values) to use to calculate autoscaled X-axis values.


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