From e203a04e18a94e6c26f54965c54ddb7e025afdd9 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 4 Dec 2000 03:09:00 +0000 Subject: [PATCH] r238: *** empty log message *** --- ChangeLog | 3 +++ configure.in | 2 +- include/array2dfile.h | 4 ++-- libctsim/array2dfile.cpp | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 876515c..84473be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2.0.7 - 12/04/00 + Modifications for Microsoft Visual C++ compilation + 2.0.6 - 12/03/00 Fixed minor compilation problem with procsignal.h Updated README file diff --git a/configure.in b/configure.in index 02c5aab..22e3b52 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ dnl Must reset CDPATH so that bash's cd does not print to stdout dnl CDPATH= AC_INIT(src/ctsim.cpp) -AM_INIT_AUTOMAKE(ctsim,2.0.6) +AM_INIT_AUTOMAKE(ctsim,2.0.7) AM_CONFIG_HEADER(config.h) dnl Checks for programs. diff --git a/include/array2dfile.h b/include/array2dfile.h index 1c40c05..0b3da84 100644 --- a/include/array2dfile.h +++ b/include/array2dfile.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: array2dfile.h,v 1.6 2000/12/04 03:04:06 kevin Exp $ +** $Id: array2dfile.h,v 1.7 2000/12/04 03:09:00 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -188,7 +188,7 @@ public: protected: typedef vector labelContainer; - static const kuint16 m_signature = ('I'*256+'F'); + static const kuint16 m_signature; kuint16 m_headersize; string m_filename; diff --git a/libctsim/array2dfile.cpp b/libctsim/array2dfile.cpp index 424ec23..19234bf 100644 --- a/libctsim/array2dfile.cpp +++ b/libctsim/array2dfile.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: array2dfile.cpp,v 1.8 2000/07/29 19:50:08 kevin Exp $ +** $Id: array2dfile.cpp,v 1.9 2000/12/04 03:09:00 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -31,6 +31,7 @@ using namespace std; +Array2dFile::m_signature = ('I'*256+'F'); /////////////////////////////////////////////////////////////////////////// // CLASS IMPLEMENTATION -- 2.34.1