aboutsummaryrefslogtreecommitdiff
path: root/core/flags/errors_nonbsd.odin
blob: a77f12abf0dcaf33b361a21288d621b35de47edf (plain)
1
2
3
4
5
6
7
8
9
10
11
//+build !netbsd !openbsd
package flags

import "base:runtime"
import "core:net"

Unified_Parse_Error_Reason :: union #shared_nil {
	Parse_Error_Reason,
	runtime.Allocator_Error,
	net.Parse_Endpoint_Error,
}