From 2a5805e2cbeb706d000f47da6feda7619b2959ba Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 22 Aug 2018 14:03:54 -0700 Subject: cosmetics: normalize include guards use the recommended format [1] of: ___H_ [1] https://google.github.io/styleguide/cppguide.html#The__define_Guard "All header files should have #define guards to prevent multiple inclusion. The format of the symbol name should be ___H_." Change-Id: I2e8ab0b32fb23c30fa43cff5fec12d043c0d2037 --- vpx_util/vpx_thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vpx_util/vpx_thread.h') diff --git a/vpx_util/vpx_thread.h b/vpx_util/vpx_thread.h index 013a6179e..19a8bfe95 100644 --- a/vpx_util/vpx_thread.h +++ b/vpx_util/vpx_thread.h @@ -12,8 +12,8 @@ // Original source: // https://chromium.googlesource.com/webm/libwebp -#ifndef VPX_THREAD_H_ -#define VPX_THREAD_H_ +#ifndef VPX_VPX_UTIL_VPX_THREAD_H_ +#define VPX_VPX_UTIL_VPX_THREAD_H_ #include "./vpx_config.h" @@ -429,4 +429,4 @@ const VPxWorkerInterface *vpx_get_worker_interface(void); } // extern "C" #endif -#endif // VPX_THREAD_H_ +#endif // VPX_VPX_UTIL_VPX_THREAD_H_ -- cgit v1.2.3