Bugfix: wrong default template parameter (from bad conflict resolution)

This commit is contained in:
Simon Giraudot 2015-10-02 16:07:13 +02:00
parent f4610bc844
commit 2d248ae75e
1 changed files with 4 additions and 3 deletions

View File

@ -90,12 +90,13 @@ namespace CGAL {
* \tparam Ct indicates whether to use concurrent processing. It must be * \tparam Ct indicates whether to use concurrent processing. It must be
* either `Sequential_tag` or `Parallel_tag` (the default value). * either `Sequential_tag` or `Parallel_tag` (the default value).
*/ */
template < class Gt, class FS = Tag_true, class wA = Default, class Ct = Parallel_tag > template < class Gt, class FS = Tag_true,
class wA = CGAL::Default_diagonalize_traits<typename Gt::FT, 3>, class Ct = Parallel_tag >
class Scale_space_surface_reconstruction_3 { class Scale_space_surface_reconstruction_3 {
public: public:
typedef typename Gt::Point_3 Point; ///< defines the point type. typedef typename Gt::Point_3 Point; ///< defines the point type.
typedef boost::tuple<Point, std::size_t> Point_and_size_t; typedef boost::tuple<Point, std::size_t> Point_and_size_t;
private: private:
// Searching for neighbors. // Searching for neighbors.