]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1470] Correct data type of member variable in MockAccess::MockIteratorNameContext
authorStephen Morris <stephen@isc.org>
Mon, 12 Dec 2011 18:20:46 +0000 (18:20 +0000)
committerStephen Morris <stephen@isc.org>
Mon, 12 Dec 2011 18:20:46 +0000 (18:20 +0000)
src/lib/datasrc/tests/database_unittest.cc

index 920c9a27a1033daff3b47d4b9ea8b40cd6340855..d2c6f43de3e87286fce6f43046d108c857dbb6a2 100644 (file)
@@ -442,7 +442,7 @@ private:
 
     private:
         const std::string searched_name_;
-        int cur_record_;
+        size_t cur_record_;
         std::vector< std::vector<std::string> > cur_name;
     };