Remove unused VmaAlgorithmToStr function
diff --git a/include/vk_mem_alloc.h b/include/vk_mem_alloc.h
index 98aa40f..7b577c3 100644
--- a/include/vk_mem_alloc.h
+++ b/include/vk_mem_alloc.h
@@ -3377,22 +3377,6 @@
     return pStr == VMA_NULL || *pStr == '\0';

 }

 

-#if VMA_STATS_STRING_ENABLED

-static const char* VmaAlgorithmToStr(uint32_t algorithm)

-{

-    switch (algorithm)

-    {

-    case VMA_POOL_CREATE_LINEAR_ALGORITHM_BIT:

-        return "Linear";

-    case 0:

-        return "TLSF";

-    default:

-        VMA_ASSERT(0);

-        return "";

-    }

-}

-#endif // VMA_STATS_STRING_ENABLED

-

 #ifndef VMA_SORT

 template<typename Iterator, typename Compare>

 Iterator VmaQuickSortPartition(Iterator beg, Iterator end, Compare cmp)