From bf3e151d0c31cad7ec33ea403666dacc8e713d0c Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sat, 26 Oct 2024 09:49:52 -0600 Subject: [PATCH] Remove redundant initializer --- examples/island/Island.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/island/Island.cpp b/examples/island/Island.cpp index 14563ac3e..4872b797f 100644 --- a/examples/island/Island.cpp +++ b/examples/island/Island.cpp @@ -338,7 +338,7 @@ void threadFunction() { std::vector vertices(resolution.x * rowBlockSize * 6); - WorkItem workItem = {nullptr, 0}; + WorkItem workItem; // Loop until the application exits for (;;)