Christian Köllner fc6af91833 added cap list serializer TC
bugfixes
2020-02-26 22:04:59 +01:00

13 lines
293 B
C#

using System;
namespace Capnp
{
static class ListSerializerHelper
{
public static void EnsureAllocated(SerializerState serializer)
{
if (!serializer.IsAllocated)
throw new InvalidOperationException("Call Init() first");
}
}
}