yanyiwu / limonp

C++ headers(hpp) library with Python style.
MIT License
125 stars 43 forks source link

To be compatible with cpp17 and later, use lambda instead of std::not1 & std::bind2nd #31

Closed playgithub closed 1 year ago

playgithub commented 1 year ago

Compiling with C++ 17 by MSVC failed because

have been deprecated since C++ 17.

To solve it, use lambda instead.

yanyiwu commented 1 year ago

Thanks