From 21c7abf090a17824369b32c62fffd53266ca744c Mon Sep 17 00:00:00 2001 From: steve Date: Tue, 14 Jun 2005 00:42:06 +0000 Subject: [PATCH] Accomodate fussy compilers. --- vvp/compile.cc | 7 +++++-- vvp/extend.cc | 4 ++-- vvp/vvp_net.h | 6 +++++- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/vvp/compile.cc b/vvp/compile.cc index 02dce252a..490aec9d2 100644 --- a/vvp/compile.cc +++ b/vvp/compile.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: compile.cc,v 1.207 2005/06/12 01:10:26 steve Exp $" +#ident "$Id: compile.cc,v 1.208 2005/06/14 00:42:06 steve Exp $" #endif # include "arith.h" @@ -35,7 +35,7 @@ #ifdef HAVE_MALLOC_H # include #endif -# include +# include # include # include # include @@ -1498,6 +1498,9 @@ void compile_param_string(char*label, char*name, char*str, char*value) /* * $Log: compile.cc,v $ + * Revision 1.208 2005/06/14 00:42:06 steve + * Accomodate fussy compilers. + * * Revision 1.207 2005/06/12 01:10:26 steve * Remove useless references to functor.h * diff --git a/vvp/extend.cc b/vvp/extend.cc index 774e6e90c..1a0c060d1 100644 --- a/vvp/extend.cc +++ b/vvp/extend.cc @@ -17,13 +17,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: extend.cc,v 1.1 2005/05/24 01:43:27 steve Exp $" +#ident "$Id: extend.cc,v 1.2 2005/06/14 00:42:06 steve Exp $" #endif # include "vvp_net.h" # include "compile.h" # include -# include +# include # include vvp_fun_extend_signed::vvp_fun_extend_signed(unsigned wid) diff --git a/vvp/vvp_net.h b/vvp/vvp_net.h index cf537c00c..5fdece21e 100644 --- a/vvp/vvp_net.h +++ b/vvp/vvp_net.h @@ -18,9 +18,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ident "$Id: vvp_net.h,v 1.32 2005/06/13 00:54:04 steve Exp $" +#ident "$Id: vvp_net.h,v 1.33 2005/06/14 00:42:06 steve Exp $" # include "config.h" +# include # include #ifdef HAVE_IOSFWD @@ -755,6 +756,9 @@ class vvp_wide_fun_t : public vvp_net_fun_t { /* * $Log: vvp_net.h,v $ + * Revision 1.33 2005/06/14 00:42:06 steve + * Accomodate fussy compilers. + * * Revision 1.32 2005/06/13 00:54:04 steve * More unified vec4 to hex string functions. *