From 2f1db4043a1a671a3d153a72ef91a0d65eccc409 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Sun, 17 Aug 2025 23:28:35 -0400 Subject: [PATCH] remove usless include --- .../core/src/command/command_buffer/gryphn_command_buffer.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/core/src/command/command_buffer/gryphn_command_buffer.c b/projects/core/src/command/command_buffer/gryphn_command_buffer.c index 7619811..34afbde 100644 --- a/projects/core/src/command/command_buffer/gryphn_command_buffer.c +++ b/projects/core/src/command/command_buffer/gryphn_command_buffer.c @@ -2,8 +2,6 @@ #include "command/command_pool/gryphn_command_pool.h" #include "instance/gryphn_instance.h" -#include "stdio.h" - gnReturnCode gnCommandPoolAllocateCommandBuffersFromPointer(gnCommandBufferHandle* buffers, uint32_t count, gnCommandPoolHandle commandPool) { for (uint32_t i = 0; i < count; i++) { buffers[i] = malloc(sizeof(struct gnCommandBuffer_t));