From 9fd318703cea2e2263613ad716b976b9e8336f3a Mon Sep 17 00:00:00 2001 From: John Anderson Date: Sat, 4 May 2024 08:46:28 -0400 Subject: [PATCH] rectify apple warning --- src/wrapper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wrapper.h b/src/wrapper.h index 41487ac..4cccc9d 100644 --- a/src/wrapper.h +++ b/src/wrapper.h @@ -2,8 +2,8 @@ #include "rust/cxx.h" -class RustStream; -class RustHandler; +struct RustStream; +struct RustHandler; void parse(RustHandler & handler, RustStream & incoming); void from_file(rust::String filename, RustHandler & handler);