diff options
author | Mukund Sivaraman <muks@isc.org> | 2013-01-07 09:52:18 +0100 |
---|---|---|
committer | Mukund Sivaraman <muks@isc.org> | 2013-01-07 09:52:23 +0100 |
commit | 08c2f82000bacb76d0602cc9c428637aed0baf21 (patch) | |
tree | bd5eb5efa0569e29009b6bf7174faf7d943d7711 /src/lib/dns/rrset_collection.cc | |
parent | [2432] Remove RRsetCollection::find() that returns an AbstractRRset (diff) | |
download | kea-08c2f82000bacb76d0602cc9c428637aed0baf21.tar.xz kea-08c2f82000bacb76d0602cc9c428637aed0baf21.zip |
[2432] Remove explicit template instantiation in one case
I thought that explicit type name made the code more readable, but maybe
that's not the case so I've removed it now.
It still needs to be specified in the other constructor.
Diffstat (limited to 'src/lib/dns/rrset_collection.cc')
-rw-r--r-- | src/lib/dns/rrset_collection.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dns/rrset_collection.cc b/src/lib/dns/rrset_collection.cc index f8cfbc38e0..8711c3fede 100644 --- a/src/lib/dns/rrset_collection.cc +++ b/src/lib/dns/rrset_collection.cc @@ -65,7 +65,7 @@ RRsetCollection::constructHelper(T source, const isc::dns::Name& origin, RRsetCollection::RRsetCollection(const char* filename, const Name& origin, const RRClass& rrclass) { - constructHelper<const char*>(filename, origin, rrclass); + constructHelper(filename, origin, rrclass); } RRsetCollection::RRsetCollection(std::istream& input_stream, const Name& origin, |