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:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user