From 0fc9bd7af17efbeea91684e3a1345fa68821a64e Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Mon, 6 May 2024 17:03:27 -0700 Subject: [PATCH] don't forget long --- ffi/examples/read-table/schema.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ffi/examples/read-table/schema.h b/ffi/examples/read-table/schema.h index 3f2e5ccc..c177b65b 100644 --- a/ffi/examples/read-table/schema.h +++ b/ffi/examples/read-table/schema.h @@ -163,6 +163,7 @@ DEFINE_VISIT_SIMPLE_TYPE(string); DEFINE_VISIT_SIMPLE_TYPE(integer); DEFINE_VISIT_SIMPLE_TYPE(short); DEFINE_VISIT_SIMPLE_TYPE(byte); +DEFINE_VISIT_SIMPLE_TYPE(long); DEFINE_VISIT_SIMPLE_TYPE(float); DEFINE_VISIT_SIMPLE_TYPE(double); DEFINE_VISIT_SIMPLE_TYPE(boolean);