diff options
author | 2021-06-04 02:47:07 -0700 | |
---|---|---|
committer | 2021-06-04 02:47:07 -0700 | |
commit | fa2f60cdd529c589505f2ec5fa2eb21c5abf8aaa (patch) | |
tree | fe268bc7851f7c8d8bb1c63934dcb8a7ed708a06 /src/timer.zig | |
parent | 21a1134de36e25b3559fac88243d1a9e1c7ca273 (diff) | |
download | bun-fa2f60cdd529c589505f2ec5fa2eb21c5abf8aaa.tar.gz bun-fa2f60cdd529c589505f2ec5fa2eb21c5abf8aaa.tar.zst bun-fa2f60cdd529c589505f2ec5fa2eb21c5abf8aaa.zip |
fix the leaks
Former-commit-id: 58d77ab82795266ecee5f437f324db81f5706682
Diffstat (limited to 'src/timer.zig')
-rw-r--r-- | src/timer.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/timer.zig b/src/timer.zig index cf56cc6ec..39e4a7822 100644 --- a/src/timer.zig +++ b/src/timer.zig @@ -16,3 +16,5 @@ pub fn stop(timer: *Timer) void { pub fn seconds(timer: *const Timer) f64 { return @intToFloat(f64, timer.elapsed) / std.time.ns_per_s; } + +pub const Group = struct {}; |