gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: force 'const' on type


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: force 'const' on type
Date: Sat, 06 Apr 2019 14:51:53 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 3f2205a65 force 'const' on type
3f2205a65 is described below

commit 3f2205a65f3c6ce1a0f3c47185e19b29c2b407a7
Author: Christian Grothoff <address@hidden>
AuthorDate: Sat Apr 6 14:51:52 2019 +0200

    force 'const' on type
---
 src/include/gnunet_common.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h
index 773ff8f3e..3a8479455 100644
--- a/src/include/gnunet_common.h
+++ b/src/include/gnunet_common.h
@@ -919,8 +919,8 @@ GNUNET_ntoh_double (double d);
  * the same pointer type.
  */
 #define GNUNET_memcmp(a,b) ({ \
-  typeof(b) _a = (a); \
-  typeof(a) _b = (b); \
+  const typeof(b) _a = (a); \
+  const typeof(a) _b = (b); \
   memcmp(_a, \
          _b, \
          sizeof (*a)); })
@@ -933,7 +933,7 @@ GNUNET_ntoh_double (double d);
  *          entire memory being zero'ed out.
  */
 #define GNUNET_is_zero(a) ({ \
-  typeof(*a) _z = { 0 };      \
+  const typeof(*a) _z = { 0 };      \
   memcmp(a, \
          &_z, \
          sizeof (_z)); })

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]