From 9409eeb5a6db8969770621d5ec080fcc380ccbc6 Mon Sep 17 00:00:00 2001 From: Sangjung Woo Date: Fri, 31 Jul 2020 14:24:31 +0900 Subject: [PATCH] [CAPI] Fix the public header issue for doxygen This patch fixes the public header issue for doxygen, which is requested by Sunggyu Choi. Signed-off-by: Sangjung Woo --- api/capi/include/nnstreamer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/capi/include/nnstreamer.h b/api/capi/include/nnstreamer.h index ad39553..8f8bfed 100644 --- a/api/capi/include/nnstreamer.h +++ b/api/capi/include/nnstreamer.h @@ -27,7 +27,7 @@ #include #include #include -#include "ml-api-common.h" +#include #ifdef __cplusplus extern "C" { @@ -189,7 +189,7 @@ typedef enum _ml_tensor_type_e typedef enum { ML_PIPELINE_BUF_POLICY_AUTO_FREE = 0, /**< Default. Application should not deallocate this buffer. NNStreamer will deallocate when the buffer is no more needed */ ML_PIPELINE_BUF_POLICY_DO_NOT_FREE = 1, /**< This buffer is not to be freed by NNStreamer (i.e., it's a static object). However, be careful: NNStreamer might be accessing this object after the return of the API call. */ - ML_PIPELINE_BUF_POLICY_MAX, /**< Max size of ml_pipeline_buf_policy_e structure */ + ML_PIPELINE_BUF_POLICY_MAX, /**< Max size of #ml_pipeline_buf_policy_e structure */ } ml_pipeline_buf_policy_e; /** -- 2.7.4