mirror of https://github.com/CGAL/cgal
Instead of forwarding it is enough to ot use using
This commit is contained in:
parent
62c75f9e01
commit
ce828e7398
|
|
@ -1,3 +1,6 @@
|
||||||
|
13 March 2006 Andreas Fabri
|
||||||
|
- Instead of forwarding it is enough to ot use using
|
||||||
|
|
||||||
13 March 2006 Andreas Fabri
|
13 March 2006 Andreas Fabri
|
||||||
- Forward call to base class as using directive fails for VC7 in Regular_triangulation_filtered_traits_3.h
|
- Forward call to base class as using directive fails for VC7 in Regular_triangulation_filtered_traits_3.h
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,24 +41,11 @@ struct Weighted_converter_3
|
||||||
typedef typename Regular_triangulation_euclidean_traits_base_3<Target_kernel>
|
typedef typename Regular_triangulation_euclidean_traits_base_3<Target_kernel>
|
||||||
::Weighted_point_3 Target_wp;
|
::Weighted_point_3 Target_wp;
|
||||||
|
|
||||||
typedef typename Regular_triangulation_euclidean_traits_base_3<Source_kernel>
|
|
||||||
::Bare_point Source_bp;
|
|
||||||
|
|
||||||
typedef typename Regular_triangulation_euclidean_traits_base_3<Target_kernel>
|
|
||||||
::Bare_point Target_bp;
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef CGAL_CFG_MATCHING_BUG_6
|
#ifndef CGAL_CFG_MATCHING_BUG_6
|
||||||
using Converter::operator();
|
using Converter::operator();
|
||||||
#else
|
|
||||||
Target_bp
|
|
||||||
operator()(const Source_bp &bp) const
|
|
||||||
{
|
|
||||||
return Converter::operator()(bp);
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
Target_wp
|
Target_wp
|
||||||
operator()(const Source_wp &wp) const
|
operator()(const Source_wp &wp) const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ CXXFLAGS = \
|
||||||
$(CGAL_CXXFLAGS) \
|
$(CGAL_CXXFLAGS) \
|
||||||
-Iinclude \
|
-Iinclude \
|
||||||
$(LONG_NAME_PROBLEM_CXXFLAGS) \
|
$(LONG_NAME_PROBLEM_CXXFLAGS) \
|
||||||
-g -DCGAL_NO_DEPRECATED_CODE
|
-g
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
#---------------------------------------------------------------------#
|
||||||
# linker flags
|
# linker flags
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue