From e94b51918463e3636e075e3d60a0a3af29fe875b Mon Sep 17 00:00:00 2001 From: dhthwy <302825+dhthwy@users.noreply.github.com> Date: Mon, 10 Nov 2025 23:37:52 -0500 Subject: [PATCH] Remove unused sortable struct --- library/Core.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/library/Core.cpp b/library/Core.cpp index b927d49cc4..253f84683f 100644 --- a/library/Core.cpp +++ b/library/Core.cpp @@ -301,21 +301,6 @@ static void fHKthread(IODATA * iodata) } } -struct sortable -{ - bool recolor; - std::string name; - std::string description; - //FIXME: Nuke when MSVC stops failing at being C++11 compliant - sortable(bool recolor_,const std::string& name_,const std::string & description_): recolor(recolor_), name(name_), description(description_){}; - bool operator <(const sortable & rhs) const - { - if( name < rhs.name ) - return true; - return false; - }; -}; - static std::string dfhack_version_desc() { std::stringstream s;