We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-Wunused-parameter
1 parent 0bd697d commit 35b1bcbCopy full SHA for 35b1bcb
ciphers/uint128_t.hpp
@@ -350,7 +350,7 @@ class uint128_t {
350
* @brief operator -- (post-decrement)
351
* @returns decremented value of this
352
*/
353
- inline uint128_t operator--(int p) {
+ inline uint128_t operator--(int) {
354
--*this;
355
return *this;
356
}
ciphers/uint256_t.hpp
@@ -319,7 +319,7 @@ class uint256_t {
319
320
321
322
- inline uint256_t operator--(int p) {
+ inline uint256_t operator--(int) {
323
324
325
0 commit comments