Skip to content

Commit 3b2381b

Browse files
authoredApr 23, 2023
fix: Fix missing cast in process.ts (#2693)
1 parent b248254 commit 3b2381b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎std/assembly/process.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export namespace process {
2929
}
3030

3131
export function time(): i64 {
32-
return Date_binding.now();
32+
return <i64>Date_binding.now();
3333
}
3434

3535
export function hrtime(): u64 {

0 commit comments

Comments
 (0)
Please sign in to comment.