Skip to content

Commit 67c6b47

Browse files
committed
Make bindings -strict-style compliant
1 parent 2b45075 commit 67c6b47

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bindings.odin

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ when ODIN_OS == .Darwin do foreign import tracy "tracy.dylib"
66
when ODIN_OS == .Windows do foreign import tracy "tracy.lib"
77
when ODIN_OS == .Linux do foreign import tracy "tracy.so"
88

9-
TracyPlotFormatEnum :: enum i32
10-
{
9+
TracyPlotFormatEnum :: enum i32 {
1110
TracyPlotFormatNumber,
1211
TracyPlotFormatMemory,
1312
TracyPlotFormatPercentage,
14-
TracyPlotFormatWatt
13+
TracyPlotFormatWatt,
1514
}
1615

1716
___tracy_source_location_data :: struct {

wrapper.odin

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package tracy
22

33
import "core:c"
4-
import "core:strings"
54

65
TRACY_ENABLE :: #config(TRACY_ENABLE, false)
76
TRACY_CALLSTACK :: #config(TRACY_CALLSTACK, 5)

0 commit comments

Comments
 (0)