clang: error: default initialization of an object of const type 'const BlackMisc::Aviation::CAirlineIcaoCodeList' without a user-provided default constructor

This commit is contained in:
Klaus Basan
2016-05-24 20:31:28 +02:00
parent f92765d515
commit 0aa916f057
8 changed files with 14 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ namespace BlackMisc
BLACKMISC_DECLARE_USING_MIXIN_METATYPE(CCountryList)
//! Default constructor.
CCountryList() = default;
CCountryList();
//! Construct from a base class object.
CCountryList(const CSequence<CCountry> &other);