Code style and comment tweaks

This commit is contained in:
Scott Lahteine
2020-01-08 20:00:06 -06:00
parent 95046c9047
commit 6e658a7c04
8 changed files with 10 additions and 10 deletions

View File

@@ -2352,7 +2352,7 @@ void MarlinSettings::reset() {
#endif
#if HAS_BED_PROBE
constexpr float dpo[XYZ] = NOZZLE_TO_PROBE_OFFSET;
constexpr float dpo[] = NOZZLE_TO_PROBE_OFFSET;
static_assert(COUNT(dpo) == 3, "NOZZLE_TO_PROBE_OFFSET must contain offsets for X, Y, and Z.");
#if HAS_PROBE_XY_OFFSET
LOOP_XYZ(a) probe_offset[a] = dpo[a];