mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:17:34 +00:00
LibJS: Convert to_i8() to ThrowCompletionOr
This commit is contained in:
parent
7bbb92dfe9
commit
1b7dbb6b3b
3 changed files with 4 additions and 4 deletions
|
@ -173,7 +173,7 @@ static ByteBuffer numeric_to_raw_bytes(GlobalObject& global_object, Value value,
|
|||
else if constexpr (sizeof(UnderlyingBufferDataType) == 2)
|
||||
int_value = MUST(value.to_i16(global_object));
|
||||
else
|
||||
int_value = value.to_i8(global_object);
|
||||
int_value = MUST(value.to_i8(global_object));
|
||||
} else {
|
||||
if constexpr (sizeof(UnderlyingBufferDataType) == 4)
|
||||
int_value = MUST(value.to_u32(global_object));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue