diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-09 00:21:21 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-02-12 16:16:53 -0700 |
commit | 5bdff4a4fb6c497f3a28c2fc5ba5280233df979e (patch) | |
tree | 1785d98eada9e8bf7a818988ad994c8c998f5480 /lib/binstruct/binint.go | |
parent | 573316e3c2ddd91fd0f36d2251f9660b4f98bebc (diff) |
binstruct: Begone with the indirection of binint
Diffstat (limited to 'lib/binstruct/binint.go')
-rw-r--r-- | lib/binstruct/binint.go | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/lib/binstruct/binint.go b/lib/binstruct/binint.go deleted file mode 100644 index 302ab8d..0000000 --- a/lib/binstruct/binint.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com> -// -// SPDX-License-Identifier: GPL-2.0-or-later - -package binstruct - -import ( - "reflect" - - "git.lukeshu.com/btrfs-progs-ng/lib/binstruct/binint" -) - -type ( - U8 = binint.U8 - U16le = binint.U16le - U32le = binint.U32le - U64le = binint.U64le - U16be = binint.U16be - U32be = binint.U32be - U64be = binint.U64be - I8 = binint.I8 - I16le = binint.I16le - I32le = binint.I32le - I64le = binint.I64le - I16be = binint.I16be - I32be = binint.I32be - I64be = binint.I64be -) - -var intKind2Type = map[reflect.Kind]reflect.Type{ - reflect.Uint8: reflect.TypeOf(U8(0)), - reflect.Int8: reflect.TypeOf(I8(0)), - reflect.Uint16: reflect.TypeOf(U16le(0)), - reflect.Int16: reflect.TypeOf(I16le(0)), - reflect.Uint32: reflect.TypeOf(U32le(0)), - reflect.Int32: reflect.TypeOf(I32le(0)), - reflect.Uint64: reflect.TypeOf(U64le(0)), - reflect.Int64: reflect.TypeOf(I64le(0)), -} |