Code style tweak to gcode.h

This commit is contained in:
Scott Lahteine 2017-05-27 15:58:22 -05:00
parent ac959b12ee
commit 33279a1e02

View File

@ -133,7 +133,7 @@ public:
// Code is found in the string. If not found, value_ptr is unchanged. // Code is found in the string. If not found, value_ptr is unchanged.
// This allows "if (seen('A')||seen('B'))" to use the last-found value. // This allows "if (seen('A')||seen('B'))" to use the last-found value.
static bool seen(const char c) { static bool seen(const char c) {
char *p = strchr(command_args, c); const char *p = strchr(command_args, c);
const bool b = !!p; const bool b = !!p;
if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : NULL; if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : NULL;
return b; return b;