From c45f6b379d98c3b32dfa7abda74434978aa94094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 13 Feb 2019 16:02:54 +0200 Subject: Remove leading double underscores from include guard defines A symbol starting with two leading underscores is reserved for the compiler/standard library implementation. Also remove the trailing two double underscores for consistency and symmetry. --- src/ref_mvs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ref_mvs.h') diff --git a/src/ref_mvs.h b/src/ref_mvs.h index 3ce06b4..d3d6b33 100644 --- a/src/ref_mvs.h +++ b/src/ref_mvs.h @@ -9,8 +9,8 @@ * PATENTS file, you can obtain it at www.aomedia.org/license/patent. */ -#ifndef __DAV1D_SRC_REF_MVS_H__ -#define __DAV1D_SRC_REF_MVS_H__ +#ifndef DAV1D_SRC_REF_MVS_H +#define DAV1D_SRC_REF_MVS_H #include @@ -178,4 +178,4 @@ static inline void fix_mv_precision(const Dav1dFrameHeader *const hdr, } } -#endif /* __DAV1D_SRC_REF_MVS_H__ */ +#endif /* DAV1D_SRC_REF_MVS_H */ -- cgit v1.2.3