Skip to content

Commit

Permalink
Try to edit code to fix compile error on Github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fholger committed Dec 22, 2023
1 parent 1968962 commit f75ce12
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Code/CryEngine/CryCommon/StlUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -282,18 +282,6 @@ namespace stl
return type.c_str();
}

//////////////////////////////////////////////////////////////////////////
//! Case sensetive less key for any type convertable to const char*.
//////////////////////////////////////////////////////////////////////////
template <class Type>
struct less_strcmp : public std::binary_function<Type,Type,bool>
{
bool operator()( const Type &left,const Type &right ) const
{
return strcmp(constchar_cast(left),constchar_cast(right)) < 0;
}
};

//////////////////////////////////////////////////////////////////////////
//! Case insensetive less key for any type convertable to const char*.
template <class Type>
Expand Down

0 comments on commit f75ce12

Please sign in to comment.