November 13, 2006
Re-applied the 'INF' fix for constraint limits.
This commit is contained in:
ejcoumans
2006-12-19 02:33:05 +00:00
parent 818b672f60
commit a0f320764b
391 changed files with 9317 additions and 5101 deletions

View File

@@ -31,14 +31,14 @@ public:
* @param n Number of bytes to allocate.
* @return Returns the memory allocated if successful, or NULL if not.
*/
static daeRawRef malloc(daeString pool, size_t n);
static DLLSPEC daeRawRef malloc(daeString pool, size_t n);
/**
* Provides a wrapper free with pool argument.
* @param pool Pool the memory should be freed from.
* @param mem Memory to be freed.
*/
static void free(daeString pool, daeRawRef mem);
static DLLSPEC void free(daeString pool, daeRawRef mem);
};
// Shorthand for defining new and delete overrides for classes, bad use of macros!