Skip to content

Commit

Permalink
format test
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Nov 23, 2024
1 parent 09b7de1 commit 726dea2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 47 deletions.
38 changes: 22 additions & 16 deletions tests/24.typedef_struct.out
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,36 @@
module tests

struct ImVec2 {
x f32
y f32
x f32
y f32
}

struct ImVec3 {
x f32
y f32
z f32
x f32
y f32
z f32
}

struct ImVec4 {
x f32
y f32
z f32
w f32
x f32
y f32
z f32
w f32
}

struct ImGuiTextRange {
b &i8
e &i8
b &i8
e &i8
}

struct ImVector_ImGuiTextRange {
size int
capacity int
data &ImGuiTextRange
size int
capacity int
data &ImGuiTextRange
}

type ImWchar16 = u16

struct ImGuiContext {
initialized int
}
initialized int
}
31 changes: 0 additions & 31 deletions tests/24.typedef_struct.v

This file was deleted.

0 comments on commit 726dea2

Please sign in to comment.