Browse Source

Parser val method parity with 1.1.x

pull/1/head
Scott Lahteine 7 years ago
parent
commit
608f8b10da
  1. 1
      Marlin/src/gcode/parser.h

1
Marlin/src/gcode/parser.h

@ -307,7 +307,6 @@ public:
FORCE_INLINE static uint32_t ulongval(const char c, const uint32_t dval=0) { return seenval(c) ? value_ulong() : dval; }
FORCE_INLINE static float linearval(const char c, const float dval=0.0) { return seenval(c) ? value_linear_units() : dval; }
FORCE_INLINE static float celsiusval(const char c, const float dval=0.0) { return seenval(c) ? value_celsius() : dval; }
FORCE_INLINE static const char* strval(const char c) { return seenval(c) ? value_ptr : NULL; }
};

Loading…
Cancel
Save