Browse Source

[2108] Remove name of unused argument

Mukund Sivaraman 12 years ago
parent
commit
1c1627f488
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/datasrc/memory/memory_client.cc

+ 2 - 2
src/lib/datasrc/memory/memory_client.cc

@@ -674,12 +674,12 @@ InMemoryClient::findZone2(const isc::dns::Name& zone_name) const {
 }
 
 isc::datasrc::DataSourceClient::FindResult
-InMemoryClient::findZone(const isc::dns::Name& zone_name) const {
+InMemoryClient::findZone(const isc::dns::Name&) const {
     // This variant of findZone() is not implemented and should be
     // removed eventually. It currently throws an exception. It is
     // required right now to derive from DataSourceClient.
     isc_throw(isc::NotImplemented,
-	      "This variant of findZone() is not implemented.");
+              "This variant of findZone() is not implemented.");
 }
 
 result::Result