diff options
| author | 2020-08-16 01:47:54 -0400 | |
|---|---|---|
| committer | 2020-08-16 01:47:54 -0400 | |
| commit | db96034ea429cf0b0b5e2bac790392d9e2f50990 (patch) | |
| tree | 9a1ed0bfc2d01d67d0f62383dbb2a1f4c9fb4eca /src/common/uint128.h | |
| parent | Merge pull request #4519 from lioncash/semi (diff) | |
| parent | common/compression: Roll back std::span changes (diff) | |
| download | yuzu-db96034ea429cf0b0b5e2bac790392d9e2f50990.tar.gz yuzu-db96034ea429cf0b0b5e2bac790392d9e2f50990.tar.xz yuzu-db96034ea429cf0b0b5e2bac790392d9e2f50990.zip | |
Merge pull request #4528 from lioncash/discard
common: Make use of [[nodiscard]] where applicable
Diffstat (limited to 'src/common/uint128.h')
| -rw-r--r-- | src/common/uint128.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/uint128.h b/src/common/uint128.h index 503cd2d0c..969259ab6 100644 --- a/src/common/uint128.h +++ b/src/common/uint128.h | |||
| @@ -10,13 +10,13 @@ | |||
| 10 | namespace Common { | 10 | namespace Common { |
| 11 | 11 | ||
| 12 | // This function multiplies 2 u64 values and divides it by a u64 value. | 12 | // This function multiplies 2 u64 values and divides it by a u64 value. |
| 13 | u64 MultiplyAndDivide64(u64 a, u64 b, u64 d); | 13 | [[nodiscard]] u64 MultiplyAndDivide64(u64 a, u64 b, u64 d); |
| 14 | 14 | ||
| 15 | // This function multiplies 2 u64 values and produces a u128 value; | 15 | // This function multiplies 2 u64 values and produces a u128 value; |
| 16 | u128 Multiply64Into128(u64 a, u64 b); | 16 | [[nodiscard]] u128 Multiply64Into128(u64 a, u64 b); |
| 17 | 17 | ||
| 18 | // This function divides a u128 by a u32 value and produces two u64 values: | 18 | // This function divides a u128 by a u32 value and produces two u64 values: |
| 19 | // the result of division and the remainder | 19 | // the result of division and the remainder |
| 20 | std::pair<u64, u64> Divide128On32(u128 dividend, u32 divisor); | 20 | [[nodiscard]] std::pair<u64, u64> Divide128On32(u128 dividend, u32 divisor); |
| 21 | 21 | ||
| 22 | } // namespace Common | 22 | } // namespace Common |