From: 박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 Date: Fri, 8 Feb 2019 02:24:06 +0000 (+0900) Subject: [enco.core] Resolve return-type-c-linkage warning (#3012) X-Git-Tag: nncc_backup~874 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c00d4d9d6a100ae981aea27a8e12f96d777e11f;p=platform%2Fcore%2Fml%2Fnnfw.git [enco.core] Resolve return-type-c-linkage warning (#3012) This commit resolves return-type-c-linkage warning that Clang reports during build. Signed-off-by: Jonghyun Park --- diff --git a/contrib/enco/core/include/enco/Backend.h b/contrib/enco/core/include/enco/Backend.h index 8ad3cd1..5da903e 100644 --- a/contrib/enco/core/include/enco/Backend.h +++ b/contrib/enco/core/include/enco/Backend.h @@ -36,6 +36,6 @@ struct Backend } // namespace enco -extern "C" std::unique_ptr make_backend(const cmdline::View &); +std::unique_ptr make_backend(const cmdline::View &); #endif // __ENCO_BACKEND_H__