From 95d0a7538cb0fdbee8598f58ff07dae91e7d1d3a Mon Sep 17 00:00:00 2001 From: ilor <kailoran@gmail.com> Date: Wed, 10 Nov 2010 15:06:41 +0100 Subject: [PATCH] prefix include guards in parser/*.h with LIBWCCL_PARSER_ --- libwccl/parser/Parser.h | 6 +++--- libwccl/parser/ParserException.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libwccl/parser/Parser.h b/libwccl/parser/Parser.h index a8b218b..9eda1ab 100644 --- a/libwccl/parser/Parser.h +++ b/libwccl/parser/Parser.h @@ -1,5 +1,5 @@ -#ifndef PARSER_H -#define PARSER_H +#ifndef LIBWCCL_PARSER_PARSER_H +#define LIBWCCL_PARSER_PARSER_H #include <sstream> #include <libcorpus2/tagset.h> @@ -25,4 +25,4 @@ private: const Corpus2::Tagset &tagset; }; -#endif // PARSER_H +#endif // LIBWCCL_PARSER_PARSER_H diff --git a/libwccl/parser/ParserException.h b/libwccl/parser/ParserException.h index b749232..4bb3b6e 100644 --- a/libwccl/parser/ParserException.h +++ b/libwccl/parser/ParserException.h @@ -1,5 +1,5 @@ -#ifndef PARSEREXCEPTION_H -#define PARSEREXCEPTION_H +#ifndef LIBWCCL_PARSER_PARSEREXCEPTION_H +#define LIBWCCL_PARSER_PARSEREXCEPTION_H #include <string> @@ -15,4 +15,4 @@ private: std::string msg; }; -#endif // PARSEREXCEPTION_H +#endif // LIBWCCL_PARSER_PARSEREXCEPTION_H -- GitLab