From a2355fa37c61c634b395f4ab7577cc814ff2c28c Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 27 Oct 2003 00:46:47 +0000 Subject: [PATCH] use higher-level class for copy constructor --- panda/src/mathutil/plane_src.I | 2 +- panda/src/mathutil/plane_src.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/mathutil/plane_src.I b/panda/src/mathutil/plane_src.I index c2b54c8ed7..db3299317e 100644 --- a/panda/src/mathutil/plane_src.I +++ b/panda/src/mathutil/plane_src.I @@ -37,7 +37,7 @@ FLOATNAME(Plane)(void) { // Description: //////////////////////////////////////////////////////////////////// INLINE_MATHUTIL FLOATNAME(Plane):: -FLOATNAME(Plane)(const FLOATNAME(Plane) ©) : +FLOATNAME(Plane)(const FLOATNAME(LVecBase4) ©) : FLOATNAME(LVecBase4)(copy) { } diff --git a/panda/src/mathutil/plane_src.h b/panda/src/mathutil/plane_src.h index 771f666c7f..7c0bcdf65f 100644 --- a/panda/src/mathutil/plane_src.h +++ b/panda/src/mathutil/plane_src.h @@ -24,7 +24,7 @@ class EXPCL_PANDA FLOATNAME(Plane) : public FLOATNAME(LVecBase4) { PUBLISHED: INLINE_MATHUTIL FLOATNAME(Plane)(void); - INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(Plane) ©); + INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(LVecBase4) ©); INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(LPoint3) &a, const FLOATNAME(LPoint3) &b, const FLOATNAME(LPoint3) &c);