From b569ead29ea4459d0d363bf5a878ddb53f8f14f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 1 Oct 2024 04:32:42 +0200 Subject: [PATCH] std.elf: Make int() and int32() functions private. These have no callers outside std.elf. Even if the standard library should provide functions like these, std.elf is probably not the place, given how general they are. --- lib/std/elf.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/std/elf.zig b/lib/std/elf.zig index 0fedffdd14f0accaac4d6586f7c6030faa284a2b..d948e8fcc5c784fcb7331dbb29b21e8c7294a92c 100644 --- a/lib/std/elf.zig +++ b/lib/std/elf.zig @@ -659,7 +659,7 @@ pub fn SectionHeaderIterator(comptime ParseSource: anytype) type { }; } -pub fn int(is_64: bool, need_bswap: bool, int_32: anytype, int_64: anytype) @TypeOf(int_64) { +fn int(is_64: bool, need_bswap: bool, int_32: anytype, int_64: anytype) @TypeOf(int_64) { if (is_64) { if (need_bswap) { return @byteSwap(int_64); @@ -671,7 +671,7 @@ pub fn int(is_64: bool, need_bswap: bool, int_32: anytype, int_64: anytype) @Typ } } -pub fn int32(need_bswap: bool, int_32: anytype, comptime Int64: anytype) Int64 { +fn int32(need_bswap: bool, int_32: anytype, comptime Int64: anytype) Int64 { if (need_bswap) { return @byteSwap(int_32); } else { -- 2.54.0