Skip to content

Commit

Permalink
Merge pull request #63 from nim65s/devel
Browse files Browse the repository at this point in the history
remove std::unary_function
  • Loading branch information
nim65s authored Sep 2, 2024
2 parents 4cd19cc + f79aa07 commit 24f2282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/factories/sequence.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace hpp {
namespace manipulation {
namespace parser {
namespace {
struct StringIsEmpty : public std::unary_function<std::string, bool> {
struct StringIsEmpty {
bool operator()(std::string s) const { return s.empty(); }
};

Expand Down

0 comments on commit 24f2282

Please sign in to comment.