Don't send EOF token to the C# mod

This commit is contained in:
2025-11-28 17:34:38 -07:00
parent 9a9fa9517f
commit 804bf11d02
4 changed files with 4 additions and 10 deletions

View File

@@ -42,11 +42,8 @@ namespace Slang
*/
public static Line AsList(this Vec_FfiToken_t vec)
{
L.Info("Converting output into a C# List.");
var list = new Line();
L.Info("Created new `Line`.");
list.Capacity = (int)vec.len;
L.Info("Changed `Capacity` to be returned Vec's len");
var currentPtr = vec.ptr;