From 9e3d429b34a2138888dcfdf8dc102de64b8725b5 Mon Sep 17 00:00:00 2001 From: MyungJoo Ham Date: Mon, 26 Nov 2018 16:27:46 +0900 Subject: [PATCH] [Common] build error fix for ubuntu/example. There is a missing header in typedef header. Without stdint.h, you won't be able to find "uint8_t". Signed-off-by: MyungJoo Ham --- gst/nnstreamer/tensor_typedef.h | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/nnstreamer/tensor_typedef.h b/gst/nnstreamer/tensor_typedef.h index d37ced1..1450f79 100644 --- a/gst/nnstreamer/tensor_typedef.h +++ b/gst/nnstreamer/tensor_typedef.h @@ -29,6 +29,7 @@ #define __GST_TENSOR_TYPEDEF_H__ #include +#include #define NNS_TENSOR_RANK_LIMIT (4) #define NNS_TENSOR_SIZE_LIMIT (16) -- 2.7.4