diff liboctave/util/oct-inttypes.h @ 30042:8d6bdd961494

maint: use "s_" prefix for static class variables in oct-inttypes.h * oct-inttypes.cc, oct-inttypes.h: Rename class static variables "zero" to "s_zero" and "one" to "s_one".
author Rik <rik@octave.org>
date Tue, 24 Aug 2021 19:55:44 -0700
parents 7854d5752dd2
children a2936935c7c8
line wrap: on
line diff
--- a/liboctave/util/oct-inttypes.h	Tue Aug 24 17:54:43 2021 -0700
+++ b/liboctave/util/oct-inttypes.h	Tue Aug 24 19:55:44 2021 -0700
@@ -910,7 +910,7 @@
   static const OCTAVE_API char * type_name ();
 
   // The following are provided for convenience.
-  static const octave_int zero, one;
+  static const octave_int s_zero, s_one;
 
   // Unsafe.  This function exists to support the MEX interface.
   // You should not use it anywhere else.