From 5c00d4d9d6a100ae981aea27a8e12f96d777e11f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 8 Feb 2019 11:24:06 +0900 Subject: [PATCH] [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 --- contrib/enco/core/include/enco/Backend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__ -- 2.7.4