mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
13 lines
293 B
C#
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");
|
|
}
|
|
}
|
|
} |