Browse Source

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 <jb@videolan.org>
pull/42/head
Filip Roséen 11 years ago
committed by Jean-Baptiste Kempf
parent
commit
4f8ba9b28b
  1. 6
      modules/access/dcp/dcpparser.h

6
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 */

Loading…
Cancel
Save