Browse Source

[1305] pass parameter by reference, not by object (intended to be the former,
but apparently forgot to type in '&')

JINMEI Tatuya 13 years ago
parent
commit
acab4a018b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/datasrc/tests/database_unittest.cc

+ 1 - 1
src/lib/datasrc/tests/database_unittest.cc

@@ -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);
         }
     };