From f73026c2ccc276ee1493a3cd733149fe8ed7df33 Mon Sep 17 00:00:00 2001 From: Jerome Jiang Date: Tue, 3 Oct 2023 22:00:02 -0400 Subject: [PATCH] Use correct include guards for init_vpx_test.h Bug: b/303112617 Change-Id: Ie18df33b2bcab91c18e920825f4ed3a29e18373b --- test/init_vpx_test.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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_ -- 2.7.4