From: JINMEI Tatuya Date: Tue, 15 Jan 2013 19:08:16 +0000 (-0800) Subject: [2157] constify X-Git-Tag: bind10-1.1.0beta1-release~85^2~5^2~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=826d0c45b072ba36bbd60dc71fe3097cd604de74;p=thirdparty%2Fkea.git [2157] constify --- diff --git a/src/bin/auth/tests/auth_srv_unittest.cc b/src/bin/auth/tests/auth_srv_unittest.cc index 405b7b8f40..e3d78ac5d2 100644 --- a/src/bin/auth/tests/auth_srv_unittest.cc +++ b/src/bin/auth/tests/auth_srv_unittest.cc @@ -198,7 +198,7 @@ protected: // Check if the counters exist and are initialized to 0. void checkCountersAreInitialized() { - std::map expect; + const std::map expect; ConstElementPtr stats = server.getStatistics()-> get("zones")->get("_SERVER_"); checkStatisticsCounters(stats, expect);