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.
This commit is contained in:
njohnson 2025-09-10 21:55:08 -04:00
parent 73f9207839
commit ddcb00676a

View File

@ -1,15 +1,5 @@
/* ecrypt-portable.h */ /* 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. *** * *** Please do not edit this file. ***
* *