diff libinterp/octave-value/ov.h @ 21354:06d15e4e611a

move public data type macros to octave-config.h * configure.ac: Define OCTAVE_HAVE_LONG_LONG_INT, OCTAVE_HAVE_UNSIGNED_LONG_LONG_INT, and OCTAVE_HAVE_OVERLOAD_CHAR_INT8_TYPES. * mk-oct-config-h.sh: Extract them from config.h. * oct-stream.cc, ov.cc, ov.h, Array-i.cc, data-conv.cc, oct-inttypes.h, acinclude.m4: Use new macro names.
author John W. Eaton <jwe@octave.org>
date Thu, 25 Feb 2016 17:34:14 -0500
parents 3d375b0905a0
children ae4d7dfea337
line wrap: on
line diff
--- a/libinterp/octave-value/ov.h	Thu Feb 25 16:15:04 2016 -0500
+++ b/libinterp/octave-value/ov.h	Thu Feb 25 17:34:14 2016 -0500
@@ -185,10 +185,10 @@
   // 64-bit ino_t, etc, and hope that those values are never actually larger
   // than can be represented exactly in a double.
 
-#if defined (HAVE_LONG_LONG_INT)
+#if defined (OCTAVE_HAVE_LONG_LONG_INT)
   octave_value (long long int i);
 #endif
-#if defined (HAVE_UNSIGNED_LONG_LONG_INT)
+#if defined (OCTAVE_HAVE_UNSIGNED_LONG_LONG_INT)
   octave_value (unsigned long long int i);
 #endif