std::binary_function is deprecated and unnecessary in C++11

This commit is contained in:
Martin Natano
2022-05-31 12:55:03 +02:00
parent f83dd1989d
commit 5f08636ad0
3 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -420,7 +420,7 @@ int TimingData::GetSegmentIndexAtRow(TimingSegmentType tst, int iRow ) const
return INVALID_INDEX;
}
struct ts_less : binary_function <TimingSegment*, TimingSegment*, bool>
struct ts_less
{
bool operator() (const TimingSegment *x, const TimingSegment *y) const
{