From 06dbd3cd2162e2848a04372476820cec2dc4f7c0 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 27 May 2020 14:19:49 -0400 Subject: [PATCH] chore: remove redudant typedef --- runtime/include/sandbox.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/runtime/include/sandbox.h b/runtime/include/sandbox.h index fe6a57e..12a34bc 100644 --- a/runtime/include/sandbox.h +++ b/runtime/include/sandbox.h @@ -96,9 +96,6 @@ extern void worker_thread_wakeup_sandbox(sandbox_t *sandbox); * Public API * **************************/ -// TODO: Why do I have to redeclare this type here? -typedef struct sandbox_request sandbox_request_t; - struct sandbox *sandbox_allocate(sandbox_request_t *sandbox_request); void sandbox_free(struct sandbox *sandbox); int sandbox_parse_http_request(struct sandbox *sandbox, size_t length);