X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fexpair.h;h=443f20a96aea948bf1afec9850cf038b84482762;hp=e67b8588997da7345a2829ce952942bad3b4e2d0;hb=239bfb08882b0aa089d68bad145f61397134b2f0;hpb=0052e44b34c982b13b08454fd6c9429fe7a90f71 diff --git a/ginac/expair.h b/ginac/expair.h index e67b8588..443f20a9 100644 --- a/ginac/expair.h +++ b/ginac/expair.h @@ -92,7 +92,7 @@ public: }; /** Function object for insertion into third argument of STL's sort() etc. */ -struct expair_is_less : public std::binary_function { +struct expair_is_less { bool operator()(const expair &lh, const expair &rh) const { return lh.is_less(rh); } }; @@ -100,21 +100,17 @@ struct expair_is_less : public std::binary_function { * into third argument of STL's sort(). Note that this does not define a * strict weak ordering since for any symbol x we have neither 3*x<2*x or * 2*x<3*x. Handle with care! */ -struct expair_rest_is_less : public std::binary_function { +struct expair_rest_is_less { bool operator()(const expair &lh, const expair &rh) const { return (lh.rest.compare(rh.rest)<0); } }; -struct expair_swap : public std::binary_function { +struct expair_swap { void operator()(expair &lh, expair &rh) const { lh.swap(rh); } }; inline void swap(expair & e1, expair & e2) { e1.swap(e2); } -// This makes STL algorithms use the more efficient swap operation for ex objects -inline void iter_swap(std::vector::iterator i1, std::vector::iterator i2) -{ i1->swap(*i2); } - } // namespace GiNaC #endif // ndef GINAC_EXPAIR_H