From ea95c82a01c531358645dfd30b9e832425a32304 Mon Sep 17 00:00:00 2001
From: Lioncash <mai.iam2048@gmail.com>
Date: Wed, 31 Jan 2024 19:41:50 -0500
Subject: [PATCH] VertexLoaderManager: Remove unused entry struct

This isn't used anywhere, so it can be removed.
---
 Source/Core/VideoCommon/VertexLoaderManager.cpp | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp
index fb24803f1c..d4e4f57cba 100644
--- a/Source/Core/VideoCommon/VertexLoaderManager.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp
@@ -118,16 +118,6 @@ void UpdateVertexArrayPointers()
   g_bases_dirty = false;
 }
 
-namespace
-{
-struct entry
-{
-  std::string text;
-  u64 num_verts;
-  bool operator<(const entry& other) const { return num_verts > other.num_verts; }
-};
-}  // namespace
-
 void MarkAllDirty()
 {
   g_bases_dirty = true;