Fixed warnings into DoExport
This commit is contained in:
parent
f1cb529a7b
commit
62ad1904e2
1 changed files with 7 additions and 7 deletions
|
@ -611,13 +611,13 @@ std::vector<std::pair<coordf_t, std::vector<GCode::LayerToPrint>>> GCode::collec
|
||||||
|
|
||||||
// free functions called by GCode::do_export()
|
// free functions called by GCode::do_export()
|
||||||
namespace DoExport {
|
namespace DoExport {
|
||||||
static void update_print_estimated_times_stats(const GCodeProcessor& processor, PrintStatistics& print_statistics)
|
// static void update_print_estimated_times_stats(const GCodeProcessor& processor, PrintStatistics& print_statistics)
|
||||||
{
|
// {
|
||||||
const GCodeProcessor::Result& result = processor.get_result();
|
// const GCodeProcessor::Result& result = processor.get_result();
|
||||||
print_statistics.estimated_normal_print_time = get_time_dhms(result.print_statistics.modes[static_cast<size_t>(PrintEstimatedStatistics::ETimeMode::Normal)].time);
|
// print_statistics.estimated_normal_print_time = get_time_dhms(result.print_statistics.modes[static_cast<size_t>(PrintEstimatedStatistics::ETimeMode::Normal)].time);
|
||||||
print_statistics.estimated_silent_print_time = processor.is_stealth_time_estimator_enabled() ?
|
// print_statistics.estimated_silent_print_time = processor.is_stealth_time_estimator_enabled() ?
|
||||||
get_time_dhms(result.print_statistics.modes[static_cast<size_t>(PrintEstimatedStatistics::ETimeMode::Stealth)].time) : "N/A";
|
// get_time_dhms(result.print_statistics.modes[static_cast<size_t>(PrintEstimatedStatistics::ETimeMode::Stealth)].time) : "N/A";
|
||||||
}
|
// }
|
||||||
|
|
||||||
static void update_print_estimated_stats(const GCodeProcessor& processor, const std::vector<Extruder>& extruders, PrintStatistics& print_statistics)
|
static void update_print_estimated_stats(const GCodeProcessor& processor, const std::vector<Extruder>& extruders, PrintStatistics& print_statistics)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue