From 13162cd5823f8017178ee7e57c767f7c9045b085 Mon Sep 17 00:00:00 2001 From: Ulya Trofimovich Date: Tue, 9 Jun 2015 17:36:36 +0100 Subject: [PATCH] Unified macro names in header guards. Inspired by sudden collision with '__COUNTER__' I occasionally got while guarding 'src/util/counter.h'. Now all headers use guards of the form '_RE2C_PATH_TO_HEADER_BASENAME_'. Some compilers (e.g. clang++) would warn about [-Wreserved-id-macro], but their reasonong about reserved macro names is quite crude and re2c is not able to confirm their standards anyway (e.g. autoconf-generated macro name 'SIZEOF___INT64'). --- re2c/src/codegen/bitmap.h | 6 +++--- re2c/src/codegen/code_names.h | 7 +++---- re2c/src/codegen/emit.h | 6 +++--- re2c/src/codegen/go.h | 6 +++--- re2c/src/codegen/indent.h | 6 +++--- re2c/src/codegen/input_api.h | 6 +++--- re2c/src/codegen/label.h | 6 +++--- re2c/src/codegen/output.h | 6 +++--- re2c/src/codegen/print.h | 6 +++--- re2c/src/codegen/scc.h | 6 +++--- re2c/src/codegen/skeleton/path.h | 6 +++--- re2c/src/codegen/skeleton/skeleton.h | 6 +++--- re2c/src/dfa/action.h | 6 +++--- re2c/src/dfa/dfa.h | 6 +++--- re2c/src/dfa/encoding/enc.h | 6 +++--- re2c/src/dfa/encoding/range_suffix.h | 6 +++--- re2c/src/dfa/encoding/utf16/utf16.h | 6 +++--- re2c/src/dfa/encoding/utf16/utf16_range.h | 6 +++--- re2c/src/dfa/encoding/utf16/utf16_regexp.h | 6 +++--- re2c/src/dfa/encoding/utf8/utf8.h | 6 +++--- re2c/src/dfa/encoding/utf8/utf8_range.h | 6 +++--- re2c/src/dfa/encoding/utf8/utf8_regexp.h | 6 +++--- re2c/src/dfa/ins.h | 6 +++--- re2c/src/dfa/re.h | 6 +++--- re2c/src/dfa/rule_rank.h | 6 +++--- re2c/src/dfa/state.h | 6 +++--- re2c/src/globals.h | 6 +++--- re2c/src/mbo_getopt.h | 6 +++--- re2c/src/parse/input.h | 6 +++--- re2c/src/parse/parser.h | 6 +++--- re2c/src/parse/scanner.h | 6 +++--- re2c/src/parse/token.h | 6 +++--- re2c/src/util/allocate.h | 6 +++--- re2c/src/util/c99_stdint.h | 6 +++--- re2c/src/util/counter.h | 6 +++--- re2c/src/util/forbid_copy.h | 6 +++--- re2c/src/util/free_list.h | 6 +++--- re2c/src/util/local_increment.h | 6 +++--- re2c/src/util/range.h | 6 +++--- re2c/src/util/smart_ptr.h | 6 +++--- re2c/src/util/substr.h | 6 +++--- re2c/src/util/uniq_vector.h | 6 +++--- re2c/src/util/wrap_iterator.h | 6 +++--- 43 files changed, 129 insertions(+), 130 deletions(-) diff --git a/re2c/src/codegen/bitmap.h b/re2c/src/codegen/bitmap.h index 70d4de72..3c87bfe7 100644 --- a/re2c/src/codegen/bitmap.h +++ b/re2c/src/codegen/bitmap.h @@ -1,5 +1,5 @@ -#ifndef _bitmap_h -#define _bitmap_h +#ifndef _RE2C_CODEGEN_BITMAP_ +#define _RE2C_CODEGEN_BITMAP_ #include "src/codegen/output.h" #include "src/util/c99_stdint.h" @@ -41,4 +41,4 @@ bool matches(const Span * b1, uint32_t n1, const State * s1, const Span * b2, ui } // end namespace re2c -#endif // _bitmap_h +#endif // _RE2C_CODEGEN_BITMAP_ diff --git a/re2c/src/codegen/code_names.h b/re2c/src/codegen/code_names.h index 00b30b07..75979a66 100644 --- a/re2c/src/codegen/code_names.h +++ b/re2c/src/codegen/code_names.h @@ -1,6 +1,5 @@ -/* $Id: token.h 547 2006-05-25 13:40:35Z helly $ */ -#ifndef _code_names_h -#define _code_names_h +#ifndef _RE2C_CODEGEN_CODE_NAMES_ +#define _RE2C_CODEGEN_CODE_NAMES_ #include #include @@ -16,4 +15,4 @@ public: } // end namespace re2c -#endif +#endif // _RE2C_CODEGEN_CODE_NAMES_ diff --git a/re2c/src/codegen/emit.h b/re2c/src/codegen/emit.h index 96ea5439..c616175e 100644 --- a/re2c/src/codegen/emit.h +++ b/re2c/src/codegen/emit.h @@ -1,5 +1,5 @@ -#ifndef __EMIT__ -#define __EMIT__ +#ifndef _RE2C_CODEGEN_EMIT_ +#define _RE2C_CODEGEN_EMIT_ #include "src/codegen/output.h" #include "src/dfa/dfa.h" @@ -38,4 +38,4 @@ template std::string replaceParam (std::string str, const std::str } // namespace re2c -#endif // __EMIT__ +#endif // _RE2C_CODEGEN_EMIT_ diff --git a/re2c/src/codegen/go.h b/re2c/src/codegen/go.h index 7bd04d69..6bc8a245 100644 --- a/re2c/src/codegen/go.h +++ b/re2c/src/codegen/go.h @@ -1,5 +1,5 @@ -#ifndef _go_h -#define _go_h +#ifndef _RE2C_CODEGEN_GO_ +#define _RE2C_CODEGEN_GO_ #include #include @@ -214,4 +214,4 @@ struct Go } // namespace re2c -#endif // _go_h +#endif // _RE2C_CODEGEN_GO_ diff --git a/re2c/src/codegen/indent.h b/re2c/src/codegen/indent.h index 1fdc6842..da6b209a 100644 --- a/re2c/src/codegen/indent.h +++ b/re2c/src/codegen/indent.h @@ -1,5 +1,5 @@ -#ifndef _indent_h -#define _indent_h +#ifndef _RE2C_CODEGEN_INDENT_ +#define _RE2C_CODEGEN_INDENT_ #include @@ -21,4 +21,4 @@ inline std::string indent (uint32_t ind) } // end namespace re2c -#endif // _indent_h +#endif // _RE2C_CODEGEN_INDENT_ diff --git a/re2c/src/codegen/input_api.h b/re2c/src/codegen/input_api.h index 44036d3d..cd3fac8c 100644 --- a/re2c/src/codegen/input_api.h +++ b/re2c/src/codegen/input_api.h @@ -1,5 +1,5 @@ -#ifndef _input_api_h -#define _input_api_h +#ifndef _RE2C_CODEGEN_INPUT_API_ +#define _RE2C_CODEGEN_INPUT_API_ #include #include @@ -40,4 +40,4 @@ public: } // end namespace re2c -#endif // _input_api_h +#endif // _RE2C_CODEGEN_INPUT_API_ diff --git a/re2c/src/codegen/label.h b/re2c/src/codegen/label.h index edc64844..1026aafe 100644 --- a/re2c/src/codegen/label.h +++ b/re2c/src/codegen/label.h @@ -1,5 +1,5 @@ -#ifndef __LABEL__ -#define __LABEL__ +#ifndef _RE2C_CODEGEN_LABEL_ +#define _RE2C_CODEGEN_LABEL_ #include @@ -35,4 +35,4 @@ public: } // namespace re2c -#endif // __LABEL__ +#endif // _RE2C_CODEGEN_LABEL_ diff --git a/re2c/src/codegen/output.h b/re2c/src/codegen/output.h index 0cd4b7fe..4daacf25 100644 --- a/re2c/src/codegen/output.h +++ b/re2c/src/codegen/output.h @@ -1,5 +1,5 @@ -#ifndef _output_h -#define _output_h +#ifndef _RE2C_CODEGEN_OUTPUT_ +#define _RE2C_CODEGEN_OUTPUT_ #include #include @@ -148,4 +148,4 @@ std::string output_get_state (); } // namespace re2c -#endif // _output_h +#endif // _RE2C_CODEGEN_OUTPUT_ diff --git a/re2c/src/codegen/print.h b/re2c/src/codegen/print.h index 53c0a28a..3d8483ac 100644 --- a/re2c/src/codegen/print.h +++ b/re2c/src/codegen/print.h @@ -1,5 +1,5 @@ -#ifndef _print_h -#define _print_h +#ifndef _RE2C_CODEGEN_PRINT_ +#define _RE2C_CODEGEN_PRINT_ #include @@ -17,4 +17,4 @@ void printSpan(std::ostream&, uint32_t, uint32_t); } // end namespace re2c -#endif +#endif // _RE2C_CODEGEN_PRINT_ diff --git a/re2c/src/codegen/scc.h b/re2c/src/codegen/scc.h index 7d2bd1c3..dc2055cb 100644 --- a/re2c/src/codegen/scc.h +++ b/re2c/src/codegen/scc.h @@ -1,5 +1,5 @@ -#ifndef __SCC__ -#define __SCC__ +#ifndef _RE2C_CODEGEN_SCC_ +#define _RE2C_CODEGEN_SCC_ #include "src/util/c99_stdint.h" #include "src/util/forbid_copy.h" @@ -29,4 +29,4 @@ void calcDepth (State * head); } // namespace re2c -#endif // __SCC__ +#endif // _RE2C_CODEGEN_SCC_ diff --git a/re2c/src/codegen/skeleton/path.h b/re2c/src/codegen/skeleton/path.h index 1d38af3b..097e2c9f 100644 --- a/re2c/src/codegen/skeleton/path.h +++ b/re2c/src/codegen/skeleton/path.h @@ -1,5 +1,5 @@ -#ifndef __PATH__ -#define __PATH__ +#ifndef _RE2C_CODEGEN_SKELETON_PATH_ +#define _RE2C_CODEGEN_SKELETON_PATH_ #include @@ -30,4 +30,4 @@ struct Path } // namespace re2c -#endif // __PATH__ +#endif // _RE2C_CODEGEN_SKELETON_PATH_ diff --git a/re2c/src/codegen/skeleton/skeleton.h b/re2c/src/codegen/skeleton/skeleton.h index b283dbf9..41af35d3 100644 --- a/re2c/src/codegen/skeleton/skeleton.h +++ b/re2c/src/codegen/skeleton/skeleton.h @@ -1,5 +1,5 @@ -#ifndef __SKELETON__ -#define __SKELETON__ +#ifndef _RE2C_CODEGEN_SKELETON_SKELETON_ +#define _RE2C_CODEGEN_SKELETON_SKELETON_ #include @@ -70,4 +70,4 @@ void emit_epilog (OutputFile & o, uint32_t ind); } // namespace re2c -#endif // __SKELETON__ +#endif // _RE2C_CODEGEN_SKELETON_SKELETON_ diff --git a/re2c/src/dfa/action.h b/re2c/src/dfa/action.h index d5914817..a188913d 100644 --- a/re2c/src/dfa/action.h +++ b/re2c/src/dfa/action.h @@ -1,5 +1,5 @@ -#ifndef __ACTION__ -#define __ACTION__ +#ifndef _RE2C_DFA_ACTION_ +#define _RE2C_DFA_ACTION_ #include @@ -106,4 +106,4 @@ private: } // namespace re2c -#endif // __ACTION__ +#endif // _RE2C_DFA_ACTION_ diff --git a/re2c/src/dfa/dfa.h b/re2c/src/dfa/dfa.h index addfb220..fd00cecf 100644 --- a/re2c/src/dfa/dfa.h +++ b/re2c/src/dfa/dfa.h @@ -1,5 +1,5 @@ -#ifndef __DFA__ -#define __DFA__ +#ifndef _RE2C_DFA_DFA_ +#define _RE2C_DFA_DFA_ #include "src/dfa/action.h" #include "src/dfa/state.h" @@ -48,4 +48,4 @@ smart_ptr genCode (RegExp *, Output &, uint32_t); } // namespace re2c -#endif // __DFA__ +#endif // _RE2C_DFA_DFA_ diff --git a/re2c/src/dfa/encoding/enc.h b/re2c/src/dfa/encoding/enc.h index 2bbbee54..f54997f3 100644 --- a/re2c/src/dfa/encoding/enc.h +++ b/re2c/src/dfa/encoding/enc.h @@ -1,5 +1,5 @@ -#ifndef _enc_h -#define _enc_h +#ifndef _RE2C_DFA_ENCODING_ENC_ +#define _RE2C_DFA_ENCODING_ENC_ #include "src/util/c99_stdint.h" #include "src/util/range.h" @@ -172,4 +172,4 @@ inline void Enc::setPolicy(policy_t t) } // namespace re2c -#endif // _enc_h +#endif // _RE2C_DFA_ENCODING_ENC_ diff --git a/re2c/src/dfa/encoding/range_suffix.h b/re2c/src/dfa/encoding/range_suffix.h index 26640e85..770c0bc6 100644 --- a/re2c/src/dfa/encoding/range_suffix.h +++ b/re2c/src/dfa/encoding/range_suffix.h @@ -1,5 +1,5 @@ -#ifndef _range_suffix_h -#define _range_suffix_h +#ifndef _RE2C_DFA_ENCODING_RANGE_SUFFIX_ +#define _RE2C_DFA_ENCODING_RANGE_SUFFIX_ #include // NULL @@ -37,4 +37,4 @@ RegExp * emit(RangeSuffix * p, RegExp * re); } // namespace re2c -#endif // _range_suffix_h +#endif // _RE2C_DFA_ENCODING_RANGE_SUFFIX_ diff --git a/re2c/src/dfa/encoding/utf16/utf16.h b/re2c/src/dfa/encoding/utf16/utf16.h index e9b6bae7..c6389d26 100644 --- a/re2c/src/dfa/encoding/utf16/utf16.h +++ b/re2c/src/dfa/encoding/utf16/utf16.h @@ -1,5 +1,5 @@ -#ifndef _re2c_utf16_h -#define _re2c_utf16_h +#ifndef _RE2C_DFA_ENCODING_UTF16_UTF16_ +#define _RE2C_DFA_ENCODING_UTF16_UTF16_ #include "src/util/c99_stdint.h" @@ -34,4 +34,4 @@ inline uint16_t utf16::trail_surr(rune r) } // namespace re2c -#endif // _re2c_utf16_h +#endif // _RE2C_DFA_ENCODING_UTF16_UTF16_ diff --git a/re2c/src/dfa/encoding/utf16/utf16_range.h b/re2c/src/dfa/encoding/utf16/utf16_range.h index e98bba7f..66cf3b91 100644 --- a/re2c/src/dfa/encoding/utf16/utf16_range.h +++ b/re2c/src/dfa/encoding/utf16/utf16_range.h @@ -1,5 +1,5 @@ -#ifndef _utf16_range_h -#define _utf16_range_h +#ifndef _RE2C_DFA_ENCODING_UTF16_RANGE_ +#define _RE2C_DFA_ENCODING_UTF16_RANGE_ #include "src/dfa/encoding/range_suffix.h" #include "src/dfa/encoding/utf16/utf16.h" @@ -13,4 +13,4 @@ void UTF16splitByRuneLength(RangeSuffix * & root, utf16::rune l, utf16::rune h); } // namespace re2c -#endif // _utf16_range_h +#endif // _RE2C_DFA_ENCODING_UTF16_RANGE_ diff --git a/re2c/src/dfa/encoding/utf16/utf16_regexp.h b/re2c/src/dfa/encoding/utf16/utf16_regexp.h index 7757ae8d..14e4fde0 100644 --- a/re2c/src/dfa/encoding/utf16/utf16_regexp.h +++ b/re2c/src/dfa/encoding/utf16/utf16_regexp.h @@ -1,5 +1,5 @@ -#ifndef _utf16_regexp_h -#define _utf16_regexp_h +#ifndef _RE2C_DFA_ENCODING_UTF16_REGEXP_ +#define _RE2C_DFA_ENCODING_UTF16_REGEXP_ #include "src/dfa/encoding/utf16/utf16.h" #include "src/util/range.h" @@ -13,4 +13,4 @@ RegExp * UTF16Range(const Range * r); } // namespace re2c -#endif // _utf16_regexp_h +#endif // _RE2C_DFA_ENCODING_UTF16_REGEXP_ diff --git a/re2c/src/dfa/encoding/utf8/utf8.h b/re2c/src/dfa/encoding/utf8/utf8.h index f40a5853..9c049a50 100644 --- a/re2c/src/dfa/encoding/utf8/utf8.h +++ b/re2c/src/dfa/encoding/utf8/utf8.h @@ -1,5 +1,5 @@ -#ifndef _re2c_utf8_h -#define _re2c_utf8_h +#ifndef _RE2C_DFA_ENCODING_UTF8_UTF8_ +#define _RE2C_DFA_ENCODING_UTF8_UTF8_ #include "src/util/c99_stdint.h" @@ -43,4 +43,4 @@ public: } // namespace re2c -#endif // _re2c_utf8_h +#endif // _RE2C_DFA_ENCODING_UTF8_UTF8_ diff --git a/re2c/src/dfa/encoding/utf8/utf8_range.h b/re2c/src/dfa/encoding/utf8/utf8_range.h index 9dce075d..e4f91da3 100644 --- a/re2c/src/dfa/encoding/utf8/utf8_range.h +++ b/re2c/src/dfa/encoding/utf8/utf8_range.h @@ -1,5 +1,5 @@ -#ifndef _utf8_range_h -#define _utf8_range_h +#ifndef _RE2C_DFA_ENCODING_UTF8_RANGE_ +#define _RE2C_DFA_ENCODING_UTF8_RANGE_ #include "src/dfa/encoding/range_suffix.h" #include "src/dfa/encoding/utf8/utf8.h" @@ -12,4 +12,4 @@ void UTF8splitByRuneLength(RangeSuffix * & p, utf8::rune l, utf8::rune h); } // namespace re2c -#endif // _utf8_range_h +#endif // _RE2C_DFA_ENCODING_UTF8_RANGE_ diff --git a/re2c/src/dfa/encoding/utf8/utf8_regexp.h b/re2c/src/dfa/encoding/utf8/utf8_regexp.h index a32a5b2f..ccfaab0e 100644 --- a/re2c/src/dfa/encoding/utf8/utf8_regexp.h +++ b/re2c/src/dfa/encoding/utf8/utf8_regexp.h @@ -1,5 +1,5 @@ -#ifndef _utf8_regexp_h -#define _utf8_regexp_h +#ifndef _RE2C_DFA_ENCODING_UTF8_REGEXP_ +#define _RE2C_DFA_ENCODING_UTF8_REGEXP_ #include "src/dfa/encoding/utf8/utf8.h" #include "src/util/range.h" @@ -13,4 +13,4 @@ RegExp * UTF8Range(const Range * r); } // namespace re2c -#endif // _utf8_regexp_h +#endif // _RE2C_DFA_ENCODING_UTF8_REGEXP_ diff --git a/re2c/src/dfa/ins.h b/re2c/src/dfa/ins.h index 6c935ae7..1e1170c7 100644 --- a/re2c/src/dfa/ins.h +++ b/re2c/src/dfa/ins.h @@ -1,5 +1,5 @@ -#ifndef _ins_h -#define _ins_h +#ifndef _RE2C_DFA_INS_ +#define _RE2C_DFA_INS_ #include "src/util/c99_stdint.h" @@ -52,4 +52,4 @@ inline void unmark(Ins *i) } // end namespace re2c -#endif +#endif // _RE2C_DFA_INS_ diff --git a/re2c/src/dfa/re.h b/re2c/src/dfa/re.h index f6c73c68..efb3c70f 100644 --- a/re2c/src/dfa/re.h +++ b/re2c/src/dfa/re.h @@ -1,5 +1,5 @@ -#ifndef _re_h -#define _re_h +#ifndef _RE2C_DFA_RE_ +#define _RE2C_DFA_RE_ #include #include @@ -307,4 +307,4 @@ extern RegExp *mkAlt(RegExp*, RegExp*); } // end namespace re2c -#endif +#endif // _RE2C_DFA_RE_ diff --git a/re2c/src/dfa/rule_rank.h b/re2c/src/dfa/rule_rank.h index 1c461365..f3e49ebd 100644 --- a/re2c/src/dfa/rule_rank.h +++ b/re2c/src/dfa/rule_rank.h @@ -1,5 +1,5 @@ -#ifndef __RULE_RANK__ -#define __RULE_RANK__ +#ifndef _RE2C_DFA_RULE_RANK_ +#define _RE2C_DFA_RULE_RANK_ #include @@ -36,4 +36,4 @@ public: } // namespace re2c -#endif // __RULE_RANK__ +#endif // _RE2C_DFA_RULE_RANK_ diff --git a/re2c/src/dfa/state.h b/re2c/src/dfa/state.h index 0261ed60..72013501 100644 --- a/re2c/src/dfa/state.h +++ b/re2c/src/dfa/state.h @@ -1,5 +1,5 @@ -#ifndef __STATE__ -#define __STATE__ +#ifndef _RE2C_DFA_STATE_ +#define _RE2C_DFA_STATE_ #include "src/codegen/go.h" #include "src/dfa/action.h" @@ -49,4 +49,4 @@ public: } // namespace re2c -#endif // __STATE__ +#endif // _RE2C_DFA_STATE_ diff --git a/re2c/src/globals.h b/re2c/src/globals.h index 771a8a5c..e77bcf8d 100644 --- a/re2c/src/globals.h +++ b/re2c/src/globals.h @@ -1,5 +1,5 @@ -#ifndef _globals_h -#define _globals_h +#ifndef _RE2C_GLOBALS_ +#define _RE2C_GLOBALS_ #include @@ -76,4 +76,4 @@ extern InputAPI input_api; } // end namespace re2c -#endif +#endif // _RE2C_GLOBALS_ diff --git a/re2c/src/mbo_getopt.h b/re2c/src/mbo_getopt.h index 915fdcc0..7d1b23bc 100644 --- a/re2c/src/mbo_getopt.h +++ b/re2c/src/mbo_getopt.h @@ -6,8 +6,8 @@ * If short_open is '-' this is the last option. */ -#ifndef RE2C_MBO_GETOPT_H_INCLUDE_GUARD_ -#define RE2C_MBO_GETOPT_H_INCLUDE_GUARD_ +#ifndef _RE2C_MBO_GETOPT_ +#define _RE2C_MBO_GETOPT_ namespace re2c { @@ -28,5 +28,5 @@ int mbo_getopt(int argc, char* const *argv, const mbo_opt_struct *opts, char **o } // end namespace re2c -#endif +#endif // _RE2C_MBO_GETOPT_ diff --git a/re2c/src/parse/input.h b/re2c/src/parse/input.h index 910bed1c..f58e189e 100644 --- a/re2c/src/parse/input.h +++ b/re2c/src/parse/input.h @@ -1,5 +1,5 @@ -#ifndef _input_h -#define _input_h +#ifndef _RE2C_PARSE_INPUT_ +#define _RE2C_PARSE_INPUT_ #include #include @@ -22,4 +22,4 @@ struct Input } // namespace re2c -#endif // _input_h +#endif // _RE2C_PARSE_INPUT_ diff --git a/re2c/src/parse/parser.h b/re2c/src/parse/parser.h index 70f32200..f4b3f295 100644 --- a/re2c/src/parse/parser.h +++ b/re2c/src/parse/parser.h @@ -1,5 +1,5 @@ -#ifndef __PARSER__ -#define __PARSER__ +#ifndef _RE2C_PARSE_PARSER_ +#define _RE2C_PARSE_PARSER_ #include @@ -21,4 +21,4 @@ typedef std::map symbol_table_t; } // namespace re2c -#endif // __PARSER__ +#endif // _RE2C_PARSE_PARSER_ diff --git a/re2c/src/parse/scanner.h b/re2c/src/parse/scanner.h index bdf342c3..1475dd70 100644 --- a/re2c/src/parse/scanner.h +++ b/re2c/src/parse/scanner.h @@ -1,5 +1,5 @@ -#ifndef _scanner_h -#define _scanner_h +#ifndef _RE2C_PARSE_SCANNER_ +#define _RE2C_PARSE_SCANNER_ #include @@ -126,4 +126,4 @@ inline void Scanner::fatal(const char *msg) const } // end namespace re2c -#endif +#endif // _RE2C_PARSE_SCANNER_ diff --git a/re2c/src/parse/token.h b/re2c/src/parse/token.h index 87482133..4d92685d 100644 --- a/re2c/src/parse/token.h +++ b/re2c/src/parse/token.h @@ -1,5 +1,5 @@ -#ifndef __TOKEN__ -#define __TOKEN__ +#ifndef _RE2C_PARSE_TOKEN_ +#define _RE2C_PARSE_TOKEN_ #include "src/util/c99_stdint.h" #include "src/util/forbid_copy.h" @@ -48,4 +48,4 @@ inline Token::Token (const Token & t) } // namespace re2c -#endif // __TOKEN__ +#endif // _RE2C_PARSE_TOKEN_ diff --git a/re2c/src/util/allocate.h b/re2c/src/util/allocate.h index f667ea01..7f89b1af 100644 --- a/re2c/src/util/allocate.h +++ b/re2c/src/util/allocate.h @@ -1,5 +1,5 @@ -#ifndef __ALLOCATE__ -#define __ALLOCATE__ +#ifndef _RE2C_UTIL_ALLOCATE_ +#define _RE2C_UTIL_ALLOCATE_ namespace re2c { @@ -14,4 +14,4 @@ template T * allocate (size_t n) } // namespace re2c -#endif // __ALLOCATE__ +#endif // _RE2C_UTIL_ALLOCATE_ diff --git a/re2c/src/util/c99_stdint.h b/re2c/src/util/c99_stdint.h index 33d7fa91..772ffd51 100644 --- a/re2c/src/util/c99_stdint.h +++ b/re2c/src/util/c99_stdint.h @@ -1,5 +1,5 @@ -#ifndef __C99_STDINT__ -#define __C99_STDINT__ +#ifndef _RE2C_UTIL_C99_STDINT_ +#define _RE2C_UTIL_C99_STDINT_ #include "config.h" @@ -256,4 +256,4 @@ typedef uint64_t uintmax_t; #endif // HAVE_STDINT_H -#endif // __C99_STDINT__ +#endif // _RE2C_UTIL_C99_STDINT_ diff --git a/re2c/src/util/counter.h b/re2c/src/util/counter.h index 4047f844..f4f58394 100644 --- a/re2c/src/util/counter.h +++ b/re2c/src/util/counter.h @@ -1,5 +1,5 @@ -#ifndef __RE2C_UTIL_COUNTER__ -#define __RE2C_UTIL_COUNTER__ +#ifndef _RE2C_UTIL_COUNTER_ +#define _RE2C_UTIL_COUNTER_ namespace re2c { @@ -26,4 +26,4 @@ public: } // namespace re2c -#endif // __RE2C_UTIL_COUNTER__ +#endif // _RE2C_UTIL_COUNTER_ diff --git a/re2c/src/util/forbid_copy.h b/re2c/src/util/forbid_copy.h index bef26ed4..9c5701d7 100644 --- a/re2c/src/util/forbid_copy.h +++ b/re2c/src/util/forbid_copy.h @@ -1,5 +1,5 @@ -#ifndef __FORBID_COPY__ -#define __FORBID_COPY__ +#ifndef _RE2C_UTIL_FORBID_COPY_ +#define _RE2C_UTIL_FORBID_COPY_ // must be used at the end of class definition // (since this macro changes scope to private) @@ -8,4 +8,4 @@ type (const type &); \ type & operator = (const type &) -#endif // __FORBID_COPY__ +#endif // _RE2C_UTIL_FORBID_COPY_ diff --git a/re2c/src/util/free_list.h b/re2c/src/util/free_list.h index 2e0f85f8..8d3ac654 100644 --- a/re2c/src/util/free_list.h +++ b/re2c/src/util/free_list.h @@ -1,5 +1,5 @@ -#ifndef _free_list_h -#define _free_list_h +#ifndef _RE2C_UTIL_FREE_LIST_ +#define _RE2C_UTIL_FREE_LIST_ #include @@ -53,4 +53,4 @@ protected: } // end namespace re2c -#endif // _free_list_h +#endif // _RE2C_UTIL_FREE_LIST_ diff --git a/re2c/src/util/local_increment.h b/re2c/src/util/local_increment.h index 6435083b..799ced43 100644 --- a/re2c/src/util/local_increment.h +++ b/re2c/src/util/local_increment.h @@ -1,5 +1,5 @@ -#ifndef __LOCAL_INCREMENT__ -#define __LOCAL_INCREMENT__ +#ifndef _RE2C_UTIL_LOCAL_INCREMENT_ +#define _RE2C_UTIL_LOCAL_INCREMENT_ namespace re2c { @@ -19,4 +19,4 @@ struct local_increment_t } // namespace re2c -#endif // __LOCAL_INCREMENT__ +#endif // _RE2C_UTIL_LOCAL_INCREMENT_ diff --git a/re2c/src/util/range.h b/re2c/src/util/range.h index 7b85f4bd..cef0dadb 100644 --- a/re2c/src/util/range.h +++ b/re2c/src/util/range.h @@ -1,5 +1,5 @@ -#ifndef _range_h -#define _range_h +#ifndef _RE2C_UTIL_RANGE_ +#define _RE2C_UTIL_RANGE_ #include @@ -43,4 +43,4 @@ Range *doDiff(Range *r1, Range *r2); } // end namespace re2c -#endif +#endif // _RE2C_UTIL_RANGE_ diff --git a/re2c/src/util/smart_ptr.h b/re2c/src/util/smart_ptr.h index aad8cbdc..c138cf55 100644 --- a/re2c/src/util/smart_ptr.h +++ b/re2c/src/util/smart_ptr.h @@ -1,5 +1,5 @@ -#ifndef SMART_PTR_HPP_INCLUDE_GUARD -#define SMART_PTR_HPP_INCLUDE_GUARD +#ifndef _RE2C_UTIL_SMART_PTR_ +#define _RE2C_UTIL_SMART_PTR_ namespace re2c { @@ -66,4 +66,4 @@ namespace re2c } } -#endif +#endif // _RE2C_UTIL_SMART_PTR_ diff --git a/re2c/src/util/substr.h b/re2c/src/util/substr.h index 7e6ca64f..79072850 100644 --- a/re2c/src/util/substr.h +++ b/re2c/src/util/substr.h @@ -1,5 +1,5 @@ -#ifndef __SUBSTR__ -#define __SUBSTR__ +#ifndef _RE2C_UTIL_SUBSTR_ +#define _RE2C_UTIL_SUBSTR_ #include "src/util/c99_stdint.h" #include "src/util/forbid_copy.h" @@ -29,4 +29,4 @@ public: } // namespace re2c -#endif // __SUBSTR__ +#endif // _RE2C_UTIL_SUBSTR_ diff --git a/re2c/src/util/uniq_vector.h b/re2c/src/util/uniq_vector.h index 0e003a83..bb8c2918 100644 --- a/re2c/src/util/uniq_vector.h +++ b/re2c/src/util/uniq_vector.h @@ -1,5 +1,5 @@ -#ifndef __UNIQ_VECTOR__ -#define __UNIQ_VECTOR__ +#ifndef _RE2C_UTIL_UNIQ_VECTOR_ +#define _RE2C_UTIL_UNIQ_VECTOR_ #include @@ -45,4 +45,4 @@ public: } // namespace re2c -#endif // __UNIQ_VECTOR__ +#endif // _RE2C_UTIL_UNIQ_VECTOR_ diff --git a/re2c/src/util/wrap_iterator.h b/re2c/src/util/wrap_iterator.h index 16166833..9f67bc71 100644 --- a/re2c/src/util/wrap_iterator.h +++ b/re2c/src/util/wrap_iterator.h @@ -1,5 +1,5 @@ -#ifndef __WRAP_ITERATOR__ -#define __WRAP_ITERATOR__ +#ifndef _RE2C_UTIL_WRAP_ITERATOR_ +#define _RE2C_UTIL_WRAP_ITERATOR_ namespace re2c { @@ -38,4 +38,4 @@ public: } // namespace re2c -#endif // __WRAP_ITERATOR__ +#endif // _RE2C_UTIL_WRAP_ITERATOR_ -- 2.40.0