Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Aug 22, 2024
1 parent 740a9c8 commit 60e755c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/*
* firmware-specific functions, data, and hooks for host comms control
*/
#include "firmware/freertos_comms_task.hpp"

#include <array>
#include <functional>
#include <utility>
Expand Down
2 changes: 1 addition & 1 deletion stm32-modules/include/common/core/gcode_parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ auto parse_value(const Input& start_from, Limit stop_at)
// separating it from the next gcode or an \r\n terminator sequence
return std::make_pair(std::optional<ValueType>(), start_from);
}
const auto * after = working + (after_ptr - &(*working));
const auto* after = working + (after_ptr - &(*working));
return std::make_pair(std::optional<ValueType>(value), after);
}

Expand Down

This file was deleted.

0 comments on commit 60e755c

Please sign in to comment.