mirror of https://github.com/CGAL/cgal
- SunPro patches.
This commit is contained in:
parent
d947c87a77
commit
2e5b87bb56
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue