- SunPro patches.

This commit is contained in:
Sylvain Pion 2001-08-15 17:39:55 +00:00
parent d947c87a77
commit 2e5b87bb56
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2.35 (15 August 2001)
- SunPro patches.
=========================== CGAL 2.3 =======================
2.34 (23 July 2001)
- renamed cmp_* to compare_* and *_dist_* to *_distance_* and
leftturn, Leftturn, LEFTTURN to left_turn, Left_turn, LEFT_TURN and

View File

@ -693,10 +693,17 @@ VectorH3<R>
operator*(const VectorH3<R>& v, const typename R::RT& f)
{ return VectorH3<R>( v.hx()*f, v.hy()*f, v.hz()*f, v.hw() ); }
#ifdef __SUNPRO_CC
template <class RT, class R>
CGAL_KERNEL_INLINE
VectorH3<R>
operator*(const RT& f, const VectorH3<R>& v)
#else
template <class R>
CGAL_KERNEL_INLINE
VectorH3<R>
operator*(const typename R::RT& f, const VectorH3<R>& v)
#endif
{ return VectorH3<R>( v.hx()*f, v.hy()*f, v.hz()*f, v.hw() ); }
template <class R>