Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/ref.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2019-02-13 17:02:54 +0300
committerMartin Storsjö <martin@martin.st>2019-02-13 17:09:03 +0300
commitc45f6b379d98c3b32dfa7abda74434978aa94094 (patch)
treec4f5984c877768c70b01905425df37821e80f4e3 /src/ref.h
parent53025a2b32f35878c1c6c00bef4a51f239631955 (diff)
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.
Diffstat (limited to 'src/ref.h')
-rw-r--r--src/ref.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ref.h b/src/ref.h
index ebe3ada..b26c01a 100644
--- a/src/ref.h
+++ b/src/ref.h
@@ -25,8 +25,8 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef __DAV1D_SRC_REF_H__
-#define __DAV1D_SRC_REF_H__
+#ifndef DAV1D_SRC_REF_H
+#define DAV1D_SRC_REF_H
#include "dav1d/dav1d.h"
@@ -50,4 +50,4 @@ void dav1d_ref_dec(Dav1dRef **ref);
int dav1d_ref_is_writable(Dav1dRef *ref);
-#endif /* __DAV1D_SRC_REF_H__ */
+#endif /* DAV1D_SRC_REF_H */