mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
UserspaceEmulator: Fix typos in SoftFPU.[cpp|h]
This commit is contained in:
parent
74aba07b70
commit
f2eff767a0
Notes:
sideshowbarker
2024-07-18 01:25:49 +09:00
Author: https://github.com/Hendiadyoin1
Commit: f2eff767a0
Pull-request: https://github.com/SerenityOS/serenity/pull/8946
Reviewed-by: https://github.com/Dexesttp
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/kleinesfilmroellchen ✅
2 changed files with 3 additions and 3 deletions
|
@ -186,7 +186,7 @@ ALWAYS_INLINE T SoftFPU::fpu_round(long double value) const
|
|||
return static_cast<T>(floorl(value));
|
||||
case RoundingMode::UP:
|
||||
return static_cast<T>(ceill(value));
|
||||
case RoundingMode::TRUNK:
|
||||
case RoundingMode::TRUNC:
|
||||
return static_cast<T>(truncl(value));
|
||||
default:
|
||||
VERIFY_NOT_REACHED();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue