mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-03 02:25:57 +08:00
style: resolve -Wunused-parameter (#2990)
This commit is contained in:
@@ -350,7 +350,7 @@ class uint128_t {
|
||||
* @brief operator -- (post-decrement)
|
||||
* @returns decremented value of this
|
||||
*/
|
||||
inline uint128_t operator--(int p) {
|
||||
inline uint128_t operator--(int) {
|
||||
--*this;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@@ -319,7 +319,7 @@ class uint256_t {
|
||||
* @brief operator -- (post-decrement)
|
||||
* @returns decremented value of this
|
||||
*/
|
||||
inline uint256_t operator--(int p) {
|
||||
inline uint256_t operator--(int) {
|
||||
--*this;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user