From ddcb00676a3221ec1251a5b54ae619019bd789df Mon Sep 17 00:00:00 2001 From: njohnson Date: Wed, 10 Sep 2025 21:55:08 -0400 Subject: [PATCH] Remove warning about macro usage This commit removes a warning message regarding the potential misuse of macros within the `ecrypt-portable.h` file. The message cautioned against using the macros in scenarios where side effects were intended, highlighting the importance of careful usage. The warning was deemed overly restrictive and has been removed to allow for greater flexibility in how the macros are utilized, while still encouraging awareness of their specific behavior. --- libs/encryption/ecrypt-portable.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libs/encryption/ecrypt-portable.h b/libs/encryption/ecrypt-portable.h index 8cae0e4..33593aa 100644 --- a/libs/encryption/ecrypt-portable.h +++ b/libs/encryption/ecrypt-portable.h @@ -1,15 +1,5 @@ /* ecrypt-portable.h */ -/* - * WARNING: the conversions defined below are implemented as macros, - * and should be used carefully. They should NOT be used with - * parameters which perform some action. E.g., the following two lines - * are not equivalent: - * - * 1) ++x; y = ROTL32(x, n); - * 2) y = ROTL32(++x, n); - */ - /* * *** Please do not edit this file. *** *