diff --git a/dep/alphanum/alphanum.h b/dep/alphanum/alphanum.h index d517c45f..16778ccc 100644 --- a/dep/alphanum/alphanum.h +++ b/dep/alphanum/alphanum.h @@ -295,7 +295,7 @@ namespace doj implement "std::ostream operator<< (std::ostream&, const Ty&)". */ template - struct alphanum_less : public std::binary_function + struct alphanum_less { bool operator()(const Ty& left, const Ty& right) const { diff --git a/dep/alphanum/build.py b/dep/alphanum/build.py index e69de29b..774d1e0e 100644 --- a/dep/alphanum/build.py +++ b/dep/alphanum/build.py @@ -0,0 +1,8 @@ +from build.c import clibrary + +clibrary( + name="alphanum", + srcs=[], + hdrs={"dep/alphanum/alphanum.h": "./alphanum.h"}, +) +