mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-11 22:43:40 +00:00
12 lines
259 B
Go
12 lines
259 B
Go
//go:build !go1.23
|
|
|
|
package cm
|
|
|
|
// HostLayout marks a struct as using host memory layout.
|
|
// See [structs.HostLayout] in Go 1.23 or later.
|
|
type HostLayout struct {
|
|
_ hostLayout // prevent accidental conversion with plain struct{}
|
|
}
|
|
|
|
type hostLayout struct{}
|