2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-10-17 14:26:31 +00:00

[1305] pass parameter by reference, not by object (intended to be the former,

but apparently forgot to type in '&')
This commit is contained in:
JINMEI Tatuya
2011-10-17 15:52:30 -07:00
parent ce53289600
commit acab4a018b

View File

@@ -264,7 +264,7 @@ class MockAccessor : public NopAccessor {
// Type of mock database "row"s. This is a map whose keys are the
// own names. We internally sort them by the name comparison order.
struct NameCompare : public binary_function<string, string, bool> {
bool operator()(const string& n1, const string n2) const {
bool operator()(const string& n1, const string& n2) const {
return (Name(n1).compare(Name(n2)).getOrder() < 0);
}
};