aboutsummaryrefslogtreecommitdiff
path: root/core/flags/errors.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/flags/errors.odin')
-rw-r--r--core/flags/errors.odin8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/flags/errors.odin b/core/flags/errors.odin
index 1862a7a00..21ea05477 100644
--- a/core/flags/errors.odin
+++ b/core/flags/errors.odin
@@ -1,7 +1,5 @@
package flags
-import "base:runtime"
-import "core:net"
import "core:os"
Parse_Error_Reason :: enum {
@@ -20,12 +18,6 @@ Parse_Error_Reason :: enum {
Unsupported_Type,
}
-Unified_Parse_Error_Reason :: union #shared_nil {
- Parse_Error_Reason,
- runtime.Allocator_Error,
- net.Parse_Endpoint_Error,
-}
-
// Raised during parsing, naturally.
Parse_Error :: struct {
reason: Unified_Parse_Error_Reason,