remove embed

This commit is contained in:
Matthew 2025-10-12 20:12:04 +11:00
parent cd9e3bb36a
commit 441e6adc48

View File

@ -279,10 +279,3 @@ AlignPow2(T)(T v, T a)
{
return (v + a - 1) & ~(a - 1);
}
u8[]
Embed(string file_name)
{
import std.file;
return cast(u8[])read(file_name);
}