comparison liboctave/util/lo-array-errwarn.cc @ 21140:e06e600f396a

eliminate use of USE_64_BIT_IDX_T * common.mk (do_subst_config_vals, do_subst_cross_config_vals): Don't substitute OCTAVE_CONF_USE_64_BIT_IDX_T. * toplev.cc (octave_config_info): Set USE_64_BIT_IDX_T from OCTAVE_CONF_ENABLE_64. * oct-conf.in.h (OCTAVE_CONF_USE_64_BIT_IDX_T): Delete macro. * oct-hdf5.h, amd.cc, ccolamd.cc, colamd.cc, dmperm.cc, symbfact.cc, ov.cc, CSparse.cc, CSparse.h, MArray-i.cc, dSparse.cc, dSparse.h, SparseCmplxQR.h, SparseQR.h, sparse-base-chol.cc, lo-array-errwarn.cc, lo-array-gripes.cc, oct-sparse.h, acinclude.m4, oct-conf-post.in.h, computer.m: Use ENABLE_64 instead of USE_64_BIT_IDX_T.
author John W. Eaton <jwe@octave.org>
date Mon, 25 Jan 2016 19:16:31 -0500
parents 358aa7fcbd33
children f7121e111991
comparison
equal deleted inserted replaced
21139:538b57866b90 21140:e06e600f396a
170 : index_exception (value, ndim, dimen) 170 : index_exception (value, ndim, dimen)
171 { } 171 { }
172 172
173 std::string details (void) const 173 std::string details (void) const
174 { 174 {
175 #ifdef USE_64_BIT_IDX_T 175 #if defined (ENABLE_64)
176 return "subscripts must be either integers 1 to (2^63)-1 or logicals"; 176 return "subscripts must be either integers 1 to (2^63)-1 or logicals";
177 #else 177 #else
178 return "subscripts must be either integers 1 to (2^31)-1 or logicals"; 178 return "subscripts must be either integers 1 to (2^31)-1 or logicals";
179 #endif 179 #endif
180 } 180 }