mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
debug_utils: use std::make_unique for initializing PicaTrace
This commit is contained in:
parent
aff35d3e58
commit
4501a9eb50
@ -286,7 +286,7 @@ void StartPicaTracing()
|
||||
}
|
||||
|
||||
std::lock_guard<std::mutex> lock(pica_trace_mutex);
|
||||
pica_trace = std::unique_ptr<PicaTrace>(new PicaTrace);
|
||||
pica_trace = std::make_unique<PicaTrace>();
|
||||
|
||||
is_pica_tracing = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user