diff --git a/svector.h b/svector.h index 3b093d0a4..a4f1b8742 100644 --- a/svector.h +++ b/svector.h @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: svector.h,v 1.8 2003/07/16 00:54:07 steve Exp $" +#ident "$Id: svector.h,v 1.9 2003/07/23 02:35:44 steve Exp $" #endif # include "config.h" @@ -101,7 +101,7 @@ template class svector { * Override the implementation of the above template for the string * type parameter. The initialization to nil works different here. */ -svector::svector(unsigned size) +inline svector::svector(unsigned size) : nitems_(size), items_(new string[size]) { } @@ -109,6 +109,9 @@ svector::svector(unsigned size) /* * $Log: svector.h,v $ + * Revision 1.9 2003/07/23 02:35:44 steve + * Inline the svector constructor. + * * Revision 1.8 2003/07/16 00:54:07 steve * Needs the config.h header. *