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 --- vp9/common/vp9_quant_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vp9/common/vp9_quant_common.h') diff --git a/vp9/common/vp9_quant_common.h b/vp9/common/vp9_quant_common.h index 4bae4a896..ec8b9f4c6 100644 --- a/vp9/common/vp9_quant_common.h +++ b/vp9/common/vp9_quant_common.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef VP9_COMMON_VP9_QUANT_COMMON_H_ -#define VP9_COMMON_VP9_QUANT_COMMON_H_ +#ifndef VPX_VP9_COMMON_VP9_QUANT_COMMON_H_ +#define VPX_VP9_COMMON_VP9_QUANT_COMMON_H_ #include "vpx/vpx_codec.h" #include "vp9/common/vp9_seg_common.h" @@ -33,4 +33,4 @@ int vp9_get_qindex(const struct segmentation *seg, int segment_id, } // extern "C" #endif -#endif // VP9_COMMON_VP9_QUANT_COMMON_H_ +#endif // VPX_VP9_COMMON_VP9_QUANT_COMMON_H_ -- cgit v1.2.3