diff options
author | rnefyodov <[email protected]> | 2022-02-10 16:47:17 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:17 +0300 |
commit | c753751b693cf7c481c0292912e2b7536fa6d36a (patch) | |
tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /contrib/tools/ragel6/cdcodegen.cpp | |
parent | c22320e8c4f3d7be38c504706f137034e91d31e6 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'contrib/tools/ragel6/cdcodegen.cpp')
-rw-r--r-- | contrib/tools/ragel6/cdcodegen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tools/ragel6/cdcodegen.cpp b/contrib/tools/ragel6/cdcodegen.cpp index da8e801a391..9e784e3f584 100644 --- a/contrib/tools/ragel6/cdcodegen.cpp +++ b/contrib/tools/ragel6/cdcodegen.cpp @@ -704,11 +704,11 @@ string CCodeGen::PTR_CONST_END() std::ostream &CCodeGen::OPEN_ARRAY( string type, string name ) { - out << "#if defined(__GNUC__)\n"; - out << "static __attribute__((used)) const " << type << " " << name << "[] = {\n"; - out << "#else\n"; + out << "#if defined(__GNUC__)\n"; + out << "static __attribute__((used)) const " << type << " " << name << "[] = {\n"; + out << "#else\n"; out << "static const " << type << " " << name << "[] = {\n"; - out << "#endif\n"; + out << "#endif\n"; return out; } |