Skip to content

Commit 16cbc6d

Browse files
authored
Merge pull request #5624 from dhthwy/reapthedead
Remove unused sortable struct
2 parents 30374d0 + e94b519 commit 16cbc6d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

library/Core.cpp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -301,21 +301,6 @@ static void fHKthread(IODATA * iodata)
301301
}
302302
}
303303

304-
struct sortable
305-
{
306-
bool recolor;
307-
std::string name;
308-
std::string description;
309-
//FIXME: Nuke when MSVC stops failing at being C++11 compliant
310-
sortable(bool recolor_,const std::string& name_,const std::string & description_): recolor(recolor_), name(name_), description(description_){};
311-
bool operator <(const sortable & rhs) const
312-
{
313-
if( name < rhs.name )
314-
return true;
315-
return false;
316-
};
317-
};
318-
319304
static std::string dfhack_version_desc()
320305
{
321306
std::stringstream s;

0 commit comments

Comments
 (0)