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_dsp/mips/inv_txfm_msa.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vpx_dsp/mips/inv_txfm_msa.h') diff --git a/vpx_dsp/mips/inv_txfm_msa.h b/vpx_dsp/mips/inv_txfm_msa.h index 1fe9b28e8..3b66249ef 100644 --- a/vpx_dsp/mips/inv_txfm_msa.h +++ b/vpx_dsp/mips/inv_txfm_msa.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef VPX_DSP_MIPS_INV_TXFM_MSA_H_ -#define VPX_DSP_MIPS_INV_TXFM_MSA_H_ +#ifndef VPX_VPX_DSP_MIPS_INV_TXFM_MSA_H_ +#define VPX_VPX_DSP_MIPS_INV_TXFM_MSA_H_ #include "vpx_dsp/mips/macros_msa.h" #include "vpx_dsp/mips/txfm_macros_msa.h" @@ -408,4 +408,4 @@ void vpx_idct16_1d_rows_msa(const int16_t *input, int16_t *output); void vpx_iadst16_1d_columns_addblk_msa(int16_t *input, uint8_t *dst, int32_t dst_stride); void vpx_iadst16_1d_rows_msa(const int16_t *input, int16_t *output); -#endif // VPX_DSP_MIPS_INV_TXFM_MSA_H_ +#endif // VPX_VPX_DSP_MIPS_INV_TXFM_MSA_H_ -- cgit v1.2.3