# HG changeset patch # User jwe # Date 1160594584 0 # Node ID 53e42cafb94a6dfc0011d448ab96f0aabde7a51c # Parent 176f1c58a474423099ad56c221f78fada97e88a7 [project @ 2006-10-11 19:23:04 by jwe] diff --git a/liboctave/SparseCmplxQR.cc b/liboctave/SparseCmplxQR.cc --- a/liboctave/SparseCmplxQR.cc +++ b/liboctave/SparseCmplxQR.cc @@ -37,7 +37,8 @@ #define OCTAVE_C99_ZERO (0. + 0.iF); SparseComplexQR::SparseComplexQR_rep::SparseComplexQR_rep -(const SparseComplexMatrix& a, int order) +(const SparseComplexMatrix& a GCC_ATTR_UNUSED, + int order GCC_ATTR_UNUSED) { #ifdef HAVE_CXSPARSE CXSPARSE_ZNAME () A; diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2006-10-11 John W. Eaton + + * mex.h (UINT64_T, uint64_T, INT64_T, int64_T, UINT32_T, uint32_T, + INT32_T, int32_T, UINT16_T, uint16_T, INT16_T, int16_T, UINT8_T, + uint8_T, INT8_T, int8_T): Conditionally define. + From Andy Adler . + 2006-10-09 John W. Eaton * oct-conf.h.in (OCTAVE_CONF_CURL_LIBS): Substitute. diff --git a/src/mex.h b/src/mex.h --- a/src/mex.h +++ b/src/mex.h @@ -103,6 +103,72 @@ #define mxIsString mxIsChar +/* Apparently these are also defined. */ + +#ifndef UINT64_T +#define UINT64_T uint64_t +#endif + +#ifndef uint64_T +#define uint64_T uint64_t +#endif + +#ifndef INT64_T +#define INT64_T int64_t +#endif + +#ifndef int64_T +#define int64_T int64_t +#endif + +#ifndef UINT32_T +#define UINT32_T uint32_t +#endif + +#ifndef uint32_T +#define uint32_T uint32_t +#endif + +#ifndef INT32_T +#define INT32_T int32_t +#endif + +#ifndef int32_T +#define int32_T int32_t +#endif + +#ifndef UINT16_T +#define UINT16_T uint16_t +#endif + +#ifndef uint16_T +#define uint16_T uint16_t +#endif + +#ifndef INT16_T +#define INT16_T int16_t +#endif + +#ifndef int16_T +#define int16_T int16_t +#endif + +#ifndef UINT8_T +#define UINT8_T uint8_t +#endif + +#ifndef uint8_T +#define uint8_T uint8_t +#endif + +#ifndef INT8_T +#define INT8_T int8_t +#endif + +#ifndef int8_T +#define int8_T int8_t +#endif + #if defined (__cplusplus) } #endif