Accomodate fussy compilers.

This commit is contained in:
steve 2005-06-14 00:42:06 +00:00
parent 4413dd3c81
commit 21c7abf090
3 changed files with 12 additions and 5 deletions

View File

@ -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 <malloc.h>
#endif
# include <iostream.h>
# include <iostream>
# include <stdlib.h>
# include <string.h>
# include <assert.h>
@ -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
*

View File

@ -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 <string.h>
# include <stream.h>
# include <iostream>
# include <assert.h>
vvp_fun_extend_signed::vvp_fun_extend_signed(unsigned wid)

View File

@ -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 <stddef.h>
# include <assert.h>
#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.
*