[CAPI] Fix the public header issue for doxygen
authorSangjung Woo <sangjung.woo@samsung.com>
Fri, 31 Jul 2020 05:24:31 +0000 (14:24 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Fri, 31 Jul 2020 11:40:29 +0000 (20:40 +0900)
This patch fixes the public header issue for doxygen, which is requested
by Sunggyu Choi.

Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
api/capi/include/nnstreamer.h

index ad39553..8f8bfed 100644 (file)
@@ -27,7 +27,7 @@
 #include <stddef.h>
 #include <stdbool.h>
 #include <stdint.h>
-#include "ml-api-common.h"
+#include <ml-api-common.h>
 
 #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;
 
 /**