1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/math/simpack/files/patch-ae
Chris Piazza ecb784b428 Unbreak for NEWGCC
PR:		16255
Submitted by:	Alexander Langer <alex@cichlids.com>
2000-01-22 03:23:29 +00:00

24 lines
653 B
Plaintext

--- func/event/include/vlist.h.old Fri Jan 21 15:49:25 2000
+++ func/event/include/vlist.h Fri Jan 21 15:49:48 2000
@@ -136,9 +136,9 @@
-----------------------------------------------------------------------------*/
#if TURBOC
- const STANDARD_HEAP_CAPACITY = 100; // heap size
+ const int STANDARD_HEAP_CAPACITY = 100; // heap size
#else
- const STANDARD_HEAP_CAPACITY = 50000;
+ const int STANDARD_HEAP_CAPACITY = 50000;
#endif
class Heap : public Vlist
@@ -227,7 +227,7 @@
const long MAX_NBUCKETS = 32768-1;
#endif
-const LARGEST_CALENDAR_SAMPLE = 25;
+const int LARGEST_CALENDAR_SAMPLE = 25;
class Calendar : public Vlist
{