From: SooChan Lim Date: Mon, 14 Dec 2020 08:58:44 +0000 (+0900) Subject: tests: remove extern "C" X-Git-Tag: submit/tizen/20201215.033043^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F17%2F249517%2F4;p=platform%2Fupstream%2Fenlightenment.git tests: remove extern "C" extern "C" is useless Change-Id: I0306004c6bb901c07e074e587dc2091ab6642103 --- diff --git a/tests/tc-e_util_transform.cpp b/tests/tc-e_util_transform.cpp index c9320220e0..e7dd623f94 100644 --- a/tests/tc-e_util_transform.cpp +++ b/tests/tc-e_util_transform.cpp @@ -1,12 +1,5 @@ #include "tc-main.h" - -#ifdef __cplusplus -extern "C" { -#endif #include "e_util_transform.h" -#ifdef __cplusplus -} -#endif class EUtilTransform : public ::testing::Test { diff --git a/tests/tc-main.h b/tests/tc-main.h index 851b9c8a84..b73183b373 100644 --- a/tests/tc-main.h +++ b/tests/tc-main.h @@ -35,13 +35,7 @@ #include #include #include -#ifdef __cplusplus -extern "C" { -#endif #include -#ifdef __cplusplus -} -#endif using ::testing::TestWithParam; using ::testing::Bool;