summaryrefslogtreecommitdiffstats
path: root/contrib/tools/ragel6/cdcodegen.cpp
diff options
context:
space:
mode:
authorrnefyodov <[email protected]>2022-02-10 16:47:17 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:47:17 +0300
commitc753751b693cf7c481c0292912e2b7536fa6d36a (patch)
tree9814fbd1c3effac9b8377c5d604b367b14e2db55 /contrib/tools/ragel6/cdcodegen.cpp
parentc22320e8c4f3d7be38c504706f137034e91d31e6 (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.cpp8
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;
}