diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2016-11-29 21:59:03 -0800 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2019-08-17 12:29:10 -1000 |
commit | 094f139435e3b02add0364f658aefd578956275c (patch) | |
tree | 96388537b59155bd23e2575f2a82b95f3ca8b9bd /apt-pkg/indexcopy.cc | |
parent | 8bfe582c8d588f0d30e4e421b47c8a4722931de4 (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 41cecdec1..cfadca78a 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -562,7 +562,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"; |