diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2016-11-29 21:59:03 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2016-11-29 21:59:03 -0800 |
commit | fd70eebe454d74e6133caf1254d80a4efda2490a (patch) | |
tree | 7b27d288dee64f0bce72c26faad1e6128bc5c35b /apt-pkg/indexcopy.cc | |
parent | 7d5234ab88b4cd6b172f13d0912c585983c3410b (diff) |
std::map from std::initializer_list is "explicit".
Diffstat (limited to 'apt-pkg/indexcopy.cc')
-rw-r--r-- | apt-pkg/indexcopy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index ca5c42cb7..cf3bb058d 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -550,7 +550,7 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList, if(Debug) cout << "Signature verify for: " << *I << endl; - metaIndex *MetaIndex = new debReleaseIndex("","", {}); + metaIndex *MetaIndex = new debReleaseIndex("",""); string prefix = *I; string const releasegpg = *I+"Release.gpg"; |