<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Remove usage of std::binary_function in the function since it's been long
deprecated and is beginning to cause problems with newer compilers

https://github.com/kismetwireless/kismet/commit/5bae9c68ce45940e03fda7d8abbbfda0fca9e95c
--- alphanum.hpp
+++ alphanum.hpp
@@ -304,7 +304,7 @@ namespace doj
      implement "std::ostream operator&lt;&lt; (std::ostream&amp;, const Ty&amp;)".
   */
   template&lt;class Ty&gt;
-  struct alphanum_less : public std::binary_function&lt;Ty, Ty, bool&gt;
+  struct alphanum_less 
   {
     bool operator()(const Ty&amp; left, const Ty&amp; right) const
     {
</pre></body></html>