Parcourir la source

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

JINMEI Tatuya il y a 13 ans
Parent
commit
acab4a018b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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);
         }
     };