[vlc-devel] [PATCH 27/28] modules/access/dcp: fixed include-guards

Filip Roséen filip at atch.se
Sat Feb 20 23:20:32 CET 2016


  * renamed include-guards to fix issues with reserved identifiers
  * replaced comment at `#endif` corresponding to include-guard
---
 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 8f95e03..42d9942 100644
--- a/modules/access/dcp/dcpparser.h
+++ b/modules/access/dcp/dcpparser.h
@@ -31,8 +31,8 @@
  */
 
 
-#ifndef _DCPPARSER_H
-#define _DCPPARSER_H
+#ifndef ACCESS__DCP__DCPPARSER_H_
+#define ACCESS__DCP__DCPPARSER_H_
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -395,4 +395,4 @@ private:
     string s_path;
 };
 
-#endif /* _DCPPARSER_H */
+#endif /* include-guard */
-- 
2.7.1



More information about the vlc-devel mailing list