Don't define 'valptr' if unused (#17048)

This commit is contained in:
ellensp 2020-03-03 08:17:52 +13:00 committed by GitHub
parent 624ab24a5c
commit af23c0480e
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -312,8 +312,10 @@ void GCodeParser::parse(char *p) {
char * const valptr = has_val ? is_str ? unescape_string(p) : p : nullptr; char * const valptr = has_val ? is_str ? unescape_string(p) : p : nullptr;
#else #else
const bool has_val = valid_float(p); const bool has_val = valid_float(p);
#if ENABLED(FASTER_GCODE_PARSER)
char * const valptr = has_val ? p : nullptr; char * const valptr = has_val ? p : nullptr;
#endif #endif
#endif
#if ENABLED(DEBUG_GCODE_PARSER) #if ENABLED(DEBUG_GCODE_PARSER)
if (debug) { if (debug) {