summaryrefslogtreecommitdiff
path: root/cpp/src/FreezeScript/DumpDB.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/FreezeScript/DumpDB.cpp')
-rw-r--r--cpp/src/FreezeScript/DumpDB.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/src/FreezeScript/DumpDB.cpp b/cpp/src/FreezeScript/DumpDB.cpp
index b48e7d4a1b2..88135555ff9 100644
--- a/cpp/src/FreezeScript/DumpDB.cpp
+++ b/cpp/src/FreezeScript/DumpDB.cpp
@@ -536,8 +536,8 @@ FreezeScript::SliceVisitor::visitClassDefStart(const Slice::ClassDefPtr& v)
return false;
}
- _out.nl();
- _out.nl();
+ _out.newline();
+ _out.newline();
_out << "<!-- class " << scoped << " -->";
_out << se("dump") << attr("type", scoped) << ee;
@@ -558,8 +558,8 @@ FreezeScript::SliceVisitor::visitStructStart(const Slice::StructPtr& v)
return false;
}
- _out.nl();
- _out.nl();
+ _out.newline();
+ _out.newline();
_out << "<!-- struct " << scoped << " -->";
_out << se("dump") << attr("type", scoped) << ee;
@@ -580,8 +580,8 @@ FreezeScript::SliceVisitor::visitSequence(const Slice::SequencePtr& v)
return;
}
- _out.nl();
- _out.nl();
+ _out.newline();
+ _out.newline();
_out << "<!-- sequence " << scoped << " -->";
_out << se("dump") << attr("type", scoped) << ee;
}
@@ -600,8 +600,8 @@ FreezeScript::SliceVisitor::visitDictionary(const Slice::DictionaryPtr& v)
return;
}
- _out.nl();
- _out.nl();
+ _out.newline();
+ _out.newline();
_out << "<!-- dictionary " << scoped << " -->";
_out << se("dump") << attr("type", scoped) << ee;
}
@@ -620,8 +620,8 @@ FreezeScript::SliceVisitor::visitEnum(const Slice::EnumPtr& v)
return;
}
- _out.nl();
- _out.nl();
+ _out.newline();
+ _out.newline();
_out << "<!-- enum " << scoped << " -->";
_out << se("dump") << attr("type", scoped) << ee;
}