From e0c720681bbce364910df241658dc987851e579a Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 4 Feb 2026 14:41:18 +0900 Subject: internal/pkg: standardise artifact IR This should hopefully provide good separation between the artifact curing backend implementation and the (still work in progress) language. Making the IR parseable also guarantees uniqueness of the representation. Signed-off-by: Ophestra --- internal/pkg/dir.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'internal/pkg/dir.go') diff --git a/internal/pkg/dir.go b/internal/pkg/dir.go index d0c3668d..1d98350f 100644 --- a/internal/pkg/dir.go +++ b/internal/pkg/dir.go @@ -28,14 +28,6 @@ type FlatEntry struct { | data []byte | */ -// wordSize is the boundary which binary segments are always aligned to. -const wordSize = 8 - -// alignSize returns the padded size for aligning sz. -func alignSize(sz int) int { - return sz + (wordSize-(sz)%wordSize)%wordSize -} - // Encode encodes the entry for transmission or hashing. func (ent *FlatEntry) Encode(w io.Writer) (n int, err error) { pPathSize := alignSize(len(ent.Path)) -- cgit v1.3.1