mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 03:43:52 +00:00
Force deallocation of redundant vector content.
Call move assignment with empty vector instead of clear().
This commit is contained in:
@@ -455,8 +455,8 @@ SLAPrint::ApplyStatus SLAPrint::apply(const Model &model, DynamicPrintConfig con
|
|||||||
|
|
||||||
if(m_objects.empty()) {
|
if(m_objects.empty()) {
|
||||||
m_printer.reset();
|
m_printer.reset();
|
||||||
m_printer_input.clear();
|
m_printer_input = {};
|
||||||
m_print_statistics.clear();
|
m_print_statistics = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
|||||||
Reference in New Issue
Block a user