IgaWrapper pimpl - change new to make_unique

Change-Id: Ib8ac8e0ea108fed4ce64bc7e4e8dc8b771bb640c
This commit is contained in:
chmielew 2019-08-02 13:07:07 +02:00 committed by sys_ocldev
parent 948ba8c6e4
commit c56cc25730
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ struct IgaWrapper::Impl {
};
IgaWrapper::IgaWrapper()
: pimpl(new Impl()) {
: pimpl(std::make_unique<Impl>()) {
}
IgaWrapper::~IgaWrapper() = default;