]> Savannah Git Hosting - gnulib.git/commitdiff
intprops.h: fix missing-backslash problems
authorJim Meyering <meyering@fb.com>
Mon, 29 Aug 2016 16:27:50 +0000 (09:27 -0700)
committerJim Meyering <meyering@fb.com>
Mon, 29 Aug 2016 16:29:51 +0000 (09:29 -0700)
* lib/intprops.h (_GL_ADD_OVERFLOW): Add backslash.
(_GL_SUBTRACT_OVERFLOW,_GL_MULTIPLY_OVERFLOW): Likewise.

ChangeLog
lib/intprops.h

index 4a2e641516afaafa5e266d36e30690d8d34d568d..c5e6ee879b209840a961da7a1850b72ec0ac656c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-08-29  Jim Meyering  <meyering@fb.com>
+
+       intprops.h: fix missing-backslash problems
+       * lib/intprops.h (_GL_ADD_OVERFLOW): Add backslash.
+       (_GL_SUBTRACT_OVERFLOW,_GL_MULTIPLY_OVERFLOW): Likewise.
+
 2016-08-24  Paul Eggert  <eggert@cs.ucla.edu>
 
        intprops: fix paren typo on old platforms
index 6030760708514c1263727ac6ce54ae75ef3e86bb..0c45550a9b1933d8771f4ee541dcb2c49b8f0002 100644 (file)
@@ -236,11 +236,11 @@ verify (TYPE_MAXIMUM (long long int) == LLONG_MAX);
    (e.g., A and B) have the same type as MIN and MAX.  Instead, they assume
    that the result (e.g., A + B) has that type.  */
 #if _GL_HAS_BUILTIN_OVERFLOW_WITH_NULL
-# define _GL_ADD_OVERFLOW(a, b, min, max)
+# define _GL_ADD_OVERFLOW(a, b, min, max)                               \
    __builtin_add_overflow (a, b, (__typeof__ ((a) + (b)) *) 0)
-# define _GL_SUBTRACT_OVERFLOW(a, b, min, max)
+# define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                          \
    __builtin_sub_overflow (a, b, (__typeof__ ((a) - (b)) *) 0)
-# define _GL_MULTIPLY_OVERFLOW(a, b, min, max)
+# define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                          \
    __builtin_mul_overflow (a, b, (__typeof__ ((a) * (b)) *) 0)
 #else
 # define _GL_ADD_OVERFLOW(a, b, min, max)                                \