Delete mafiabot_types.adb

This commit is contained in:
gravermistakes 2026-06-18 05:13:54 -07:00 committed by GitHub
parent 9c71e7fb19
commit a0d7e52a22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +0,0 @@
package body Mafiabot_Types
with SPARK_Mode => On
is
function Make_Text (S : String) return Bounded_Text is
T : Bounded_Text;
L : constant Text_Length := S'Length;
begin
T.Length := L;
T.Data (1 .. L) := S;
return T;
end Make_Text;
function To_String (T : Bounded_Text) return String is
begin
return T.Data (1 .. T.Length);
end To_String;
end Mafiabot_Types;