mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:07:34 +00:00
AK: Fix Checked::multiplication_would_overflow() signature
The two-argument version doesn't need an extra template parameter.
This commit is contained in:
parent
7541122206
commit
000a9cad34
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename U, typename V, typename X>
|
template<typename U, typename V>
|
||||||
static bool multiplication_would_overflow(U u, V v)
|
static bool multiplication_would_overflow(U u, V v)
|
||||||
{
|
{
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue