Update of /cvsroot/nsclspectcl/SpecTcl/Sorter
In directory sc8-pr-cvs1:/tmp/cvs-serv16693
Modified Files:
Spectrum.cpp
Log Message:
#include <time.h> for randomizer... apparently
this comes in from stdlib.h on linux but should
come from time.h according to all man pages.
Index: Spectrum.cpp
===================================================================
RCS file: /cvsroot/nsclspectcl/SpecTcl/Sorter/Spectrum.cpp,v
retrieving revision 4.3
retrieving revision 4.4
diff -C2 -d -r4.3 -r4.4
*** Spectrum.cpp 19 Apr 2003 00:11:13 -0000 4.3
--- Spectrum.cpp 28 Oct 2003 21:35:53 -0000 4.4
***************
*** 299,302 ****
--- 299,307 ----
Change log:
$Log$
+ Revision 4.4 2003/10/28 21:35:53 ron-fox
+ #include <time.h> for randomizer... apparently
+ this comes in from stdlib.h on linux but should
+ come from time.h according to all man pages.
+
Revision 4.3 2003/04/19 00:11:13 ron-fox
Fix a nasty issue with GetDefinition() that was causing death due to a number of problems with the static output struct. For later: change the struct to a class so that it can be returned by value rather than by reference.. then it wouldn't have to be static.
***************
*** 320,323 ****
--- 325,329 ----
#include <RangeError.h>
#include <stdlib.h>
+ #include <time.h>
static string T("-TRUE-");
|