mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
fix compilation issue with g++ 5
This commit is contained in:
parent
bcb6128c45
commit
354cd06933
1 changed files with 3 additions and 1 deletions
|
|
@ -32,8 +32,10 @@ using namespace LinphonePrivate;
|
|||
|
||||
class Cpim::GenericHeaderPrivate : public HeaderPrivate {
|
||||
public:
|
||||
GenericHeaderPrivate() : parameters(make_shared< list< pair<string, string> > >()){
|
||||
}
|
||||
string name;
|
||||
shared_ptr<list<pair<string, string> > > parameters = make_shared<list<pair<string, string> > >();
|
||||
shared_ptr<list<pair<string, string> > > parameters;
|
||||
};
|
||||
|
||||
Cpim::GenericHeader::GenericHeader () : Header(*new GenericHeaderPrivate) {}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue