mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-29 10:50:05 +00:00
Remove strings dependency from core:sys/windows
This commit is contained in:
+4
-4
@@ -1,6 +1,6 @@
|
||||
package time
|
||||
|
||||
import "core:mem"
|
||||
import "core:runtime"
|
||||
|
||||
Tick :: struct {
|
||||
_nsec: i64, // relative amount
|
||||
@@ -50,9 +50,9 @@ Benchmark_Error :: enum {
|
||||
}
|
||||
|
||||
Benchmark_Options :: struct {
|
||||
setup: #type proc(options: ^Benchmark_Options, allocator: mem.Allocator) -> (err: Benchmark_Error),
|
||||
bench: #type proc(options: ^Benchmark_Options, allocator: mem.Allocator) -> (err: Benchmark_Error),
|
||||
teardown: #type proc(options: ^Benchmark_Options, allocator: mem.Allocator) -> (err: Benchmark_Error),
|
||||
setup: #type proc(options: ^Benchmark_Options, allocator: runtime.Allocator) -> (err: Benchmark_Error),
|
||||
bench: #type proc(options: ^Benchmark_Options, allocator: runtime.Allocator) -> (err: Benchmark_Error),
|
||||
teardown: #type proc(options: ^Benchmark_Options, allocator: runtime.Allocator) -> (err: Benchmark_Error),
|
||||
|
||||
rounds: int,
|
||||
bytes: int,
|
||||
|
||||
Reference in New Issue
Block a user