From 0c774f937f169f31f9b11136d3375901597f9269 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 8 Oct 2024 20:41:47 +1300 Subject: Cleaned up some assertions --- src/libsndfile-commands.adb | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/libsndfile-commands.adb') diff --git a/src/libsndfile-commands.adb b/src/libsndfile-commands.adb index 1939cd7..6bdd3cf 100644 --- a/src/libsndfile-commands.adb +++ b/src/libsndfile-commands.adb @@ -9,7 +9,6 @@ pragma Ada_2012; with - Ada.Assertions, Ada.Strings.Fixed, Interfaces.C.Strings; @@ -496,7 +495,6 @@ package body Libsndfile.Commands is Result : Long_Float_Array (1 .. Natural (File.Chans)); Code : Interfaces.C.int; begin - Ada.Assertions.Assert (Long_Float'Size = Interfaces.C.double'Size); Code := sf_command (File.Ptr, sfc_calc_max_all_channels, @@ -517,7 +515,6 @@ package body Libsndfile.Commands is Result : Long_Float_Array (1 .. Natural (File.Chans)); Code : Interfaces.C.int; begin - Ada.Assertions.Assert (Long_Float'Size = Interfaces.C.double'Size); Code := sf_command (File.Ptr, sfc_calc_norm_max_all_channels, -- cgit