This is an automated email from Gerrit. Andreas Färber ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/3718
-- gerrit commit 0180427ca9faef9167b266e3ae83832fd82a8773 Author: Andreas Färber <[email protected]> Date: Mon Aug 22 00:56:54 2016 +0200 command: Add missing declaration for parse_s64() It was implemented but not declared for consumption, fix that. This allows to use COMMAND_PARSE_NUMBER(s64, in, out). Change-Id: I9f928a211a4a574da219835d7c1e9e2901249c66 Signed-off-by: Andreas Färber <[email protected]> diff --git a/src/helper/command.h b/src/helper/command.h index 5c39660..d66dbfc 100644 --- a/src/helper/command.h +++ b/src/helper/command.h @@ -357,6 +357,7 @@ DECLARE_PARSE_WRAPPER(_u16, uint16_t); DECLARE_PARSE_WRAPPER(_u8, uint8_t); DECLARE_PARSE_WRAPPER(_int, int); +DECLARE_PARSE_WRAPPER(_s64, int64_t); DECLARE_PARSE_WRAPPER(_s32, int32_t); DECLARE_PARSE_WRAPPER(_s16, int16_t); DECLARE_PARSE_WRAPPER(_s8, int8_t); -- ------------------------------------------------------------------------------ _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
