From 854717ecfc15a0e23eef3f64e63f404496400e07 Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 12 Jul 2007 06:41:24 +0000 Subject: [PATCH] added a missing static to the Construct() member --- vcg/space/box3.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/space/box3.h b/vcg/space/box3.h index 2839def3..f1816507 100644 --- a/vcg/space/box3.h +++ b/vcg/space/box3.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.16 2007/03/22 18:12:00 pietroni +*** empty log message *** + Revision 1.15 2007/03/22 17:29:16 pietroni *** empty log message *** @@ -345,7 +348,7 @@ public: } template - inline Box3 Construct( const Box3 & b ) + static inline Box3 Construct( const Box3 & b ) { return Box3(Point3::Construct(b.min),Point3::Construct(b.max)); }