From 4f8ba9b28bb4988bd5731eb618640dd0752fbbc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Ros=C3=A9en?= Date: Mon, 22 Feb 2016 01:13:08 +0100 Subject: [PATCH] DCP: fixed include-guards * renamed include-guards to fix issues with reserved identifiers * replaced comment at `#endif` corresponding to include-guard Signed-off-by: Jean-Baptiste Kempf --- modules/access/dcp/dcpparser.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/access/dcp/dcpparser.h b/modules/access/dcp/dcpparser.h index 8f95e03897..c3b1db0353 100644 --- a/modules/access/dcp/dcpparser.h +++ b/modules/access/dcp/dcpparser.h @@ -31,8 +31,8 @@ */ -#ifndef _DCPPARSER_H -#define _DCPPARSER_H +#ifndef VLC_DCP_DCPPARSER_H_ +#define VLC_DCP_DCPPARSER_H_ #ifdef HAVE_CONFIG_H #include "config.h" @@ -395,4 +395,4 @@ private: string s_path; }; -#endif /* _DCPPARSER_H */ +#endif /* include-guard */