From: Vladimir Plazun/AI Tools Lab /SRR/Engineer/삼성전자 Date: Fri, 16 Aug 2019 00:35:10 +0000 (+0300) Subject: [bug] [custom op] Add back _t suffix for size_t type (#6619) X-Git-Tag: accepted/tizen/unified/20190903.052428~370 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=816369fb61655fd886bd21defda9ae9506748eb5;p=platform%2Fcore%2Fml%2Fnnfw.git [bug] [custom op] Add back _t suffix for size_t type (#6619) Was previously removed by error Signed-off-by: Vladimir Plazun --- diff --git a/runtimes/include/nnfw_dev.h b/runtimes/include/nnfw_dev.h index 5e46adc..b4e62fa 100644 --- a/runtimes/include/nnfw_dev.h +++ b/runtimes/include/nnfw_dev.h @@ -35,10 +35,10 @@ typedef struct */ typedef struct { - size ninputs; + size_t ninputs; nnfw_operand *inputs; - size noutputs; + size_t noutputs; nnfw_operand *outputs; } nnfw_custom_kernel_params;