From: Jerome Jiang Date: Wed, 4 Oct 2023 02:00:02 +0000 (-0400) Subject: Use correct include guards for init_vpx_test.h X-Git-Tag: accepted/tizen/7.0/unified/20240521.012539~1^2~67^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f73026c2ccc276ee1493a3cd733149fe8ed7df33;p=platform%2Fupstream%2Flibvpx.git Use correct include guards for init_vpx_test.h Bug: b/303112617 Change-Id: Ie18df33b2bcab91c18e920825f4ed3a29e18373b --- diff --git a/test/init_vpx_test.h b/test/init_vpx_test.h index 39ed652..5e0dbb0 100644 --- a/test/init_vpx_test.h +++ b/test/init_vpx_test.h @@ -8,11 +8,11 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef TEST_TEST_COMMON_MAIN_H_ -#define TEST_TEST_COMMON_MAIN_H_ +#ifndef TEST_INIT_VPX_TEST_H_ +#define TEST_INIT_VPX_TEST_H_ namespace libvpx_test { void init_vpx_test(); } -#endif +#endif // TEST_INIT_VPX_TEST_H_