Delete mafiabot_types.adb

ive said this a million times
This commit is contained in:
gravermistakes 2026-07-26 16:33:16 -07:00 committed by GitHub
parent 0db3d571fb
commit a8e890b362
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +0,0 @@
-- Bodies for the shared helpers. Mafiabot is not a term in use.
with SPARK_Mode => On
is
function Make_Text (S : String) return Bounded_Text is
Result : Bounded_Text;
begin
Result.Length := S'Length;
if S'Length > 0 then
Result.Data (1 .. S'Length) := S;
end if;
return Result;
end Make_Text;
function To_String (T : Bounded_Text) return String is
begin
return T.Data (1 .. T.Length);
end To_String;
end;