IgaWrapper pimpl - change new to make_unique
Change-Id: Ib8ac8e0ea108fed4ce64bc7e4e8dc8b771bb640c
This commit is contained in:
parent
948ba8c6e4
commit
c56cc25730
|
@ -73,7 +73,7 @@ struct IgaWrapper::Impl {
|
|||
};
|
||||
|
||||
IgaWrapper::IgaWrapper()
|
||||
: pimpl(new Impl()) {
|
||||
: pimpl(std::make_unique<Impl>()) {
|
||||
}
|
||||
|
||||
IgaWrapper::~IgaWrapper() = default;
|
||||
|
|
Loading…
Reference in New Issue