diff options
Diffstat (limited to 'Source/Core/Common/Crypto/ec.cpp')
| -rw-r--r-- | Source/Core/Common/Crypto/ec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Crypto/ec.cpp b/Source/Core/Common/Crypto/ec.cpp index 1f1b0e6018..cdfe228f81 100644 --- a/Source/Core/Common/Crypto/ec.cpp +++ b/Source/Core/Common/Crypto/ec.cpp @@ -24,7 +24,7 @@ struct Elt { bool IsZero() const { - return std::all_of(data.begin(), data.end(), [](u8 b) { return b == 0; }); + return std::ranges::all_of(data, [](u8 b) { return b == 0; }); } void MulX() |
