|
[yoda-svn] r439 - trunk/include/YODAblackhole at projects.hepforge.org blackhole at projects.hepforge.orgWed May 2 10:10:58 BST 2012
Author: dgrell Date: Wed May 2 10:10:58 2012 New Revision: 439 Log: fixed typename outside template Modified: trunk/include/YODA/Profile2D.h trunk/include/YODA/ReaderYODA.h Modified: trunk/include/YODA/Profile2D.h ============================================================================== --- trunk/include/YODA/Profile2D.h Wed May 2 10:06:25 2012 (r438) +++ trunk/include/YODA/Profile2D.h Wed May 2 10:10:58 2012 (r439) @@ -29,8 +29,8 @@ typedef Profile2DAxis Axis; typedef Axis::Bins Bins; typedef ProfileBin2D Bin; - typedef typename std::pair<double, double> Point; - typedef typename std::pair<Point, Point> Segment; + typedef std::pair<double, double> Point; + typedef std::pair<Point, Point> Segment; /// @name Constructors Modified: trunk/include/YODA/ReaderYODA.h ============================================================================== --- trunk/include/YODA/ReaderYODA.h Wed May 2 10:06:25 2012 (r438) +++ trunk/include/YODA/ReaderYODA.h Wed May 2 10:10:58 2012 (r439) @@ -11,7 +11,6 @@ #include <YODA/Histo1D.h> #include <YODA/Profile1D.h> #include <boost/spirit/include/qi.hpp> -#include <boost/spirit/include/qi_domain.hpp> #include <boost/spirit/include/phoenix_operator.hpp> #include <boost/fusion/include/adapt_struct.hpp>
More information about the yoda-svn mailing list |