Unverified Commit 0a3a914f authored by Hugo MacDermott-Opeskin's avatar Hugo MacDermott-Opeskin Committed by GitHub
Browse files

Remove std::binary_function from ConstraintOrderer functor (#4217)

* remove std::binary_function from ConstraintOrderer functor

* whoops whitespace
parent 8e369f22
......@@ -36,7 +36,6 @@
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <functional>
#include <map>
#include <set>
......@@ -76,7 +75,7 @@ struct IntegrationUtilities::ShakeCluster {
}
};
struct IntegrationUtilities::ConstraintOrderer : public binary_function<int, int, bool> {
struct IntegrationUtilities::ConstraintOrderer {
const vector<int>& atom1;
const vector<int>& atom2;
const vector<int>& constraints;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment