mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
IgaWrapper pimpl - change new to make_unique
Change-Id: Ib8ac8e0ea108fed4ce64bc7e4e8dc8b771bb640c
This commit is contained in:
@@ -73,7 +73,7 @@ struct IgaWrapper::Impl {
|
||||
};
|
||||
|
||||
IgaWrapper::IgaWrapper()
|
||||
: pimpl(new Impl()) {
|
||||
: pimpl(std::make_unique<Impl>()) {
|
||||
}
|
||||
|
||||
IgaWrapper::~IgaWrapper() = default;
|
||||
|
||||
Reference in New Issue
Block a user