From 4a1e17f4e0bb9a15813ac724968c2c834bc57113 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Mon, 22 Jun 2020 16:27:10 -0700 Subject: [PATCH] Remove typedef that should have been removed in 3.1 --- src/List.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/List.h b/src/List.h index c6d0902013..53dc96f9cf 100644 --- a/src/List.h +++ b/src/List.h @@ -26,9 +26,6 @@ #include #include "util.h" -// TODO: this can be removed in v3.1 when List::sort() is removed -typedef int (*list_cmp_func)(const void* v1, const void* v2); - enum class ListOrder : int { ORDERED, UNORDERED }; template