File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
16
16
namespace lldb_private {
17
17
18
- class StreamString ;
18
+ class Stream ;
19
19
class Log ;
20
20
21
21
class RegisterFlags {
@@ -56,7 +56,7 @@ class RegisterFlags {
56
56
// / Output XML that describes this field, to be inserted into a target XML
57
57
// / file. Reserved characters in field names like "<" are replaced with
58
58
// / their XML safe equivalents like ">".
59
- void ToXML (StreamString &strm) const ;
59
+ void ToXML (Stream &strm) const ;
60
60
61
61
bool operator <(const Field &rhs) const {
62
62
return GetStart () < rhs.GetStart ();
@@ -119,7 +119,7 @@ class RegisterFlags {
119
119
std::string AsTable (uint32_t max_width) const ;
120
120
121
121
// Output XML that describes this set of flags.
122
- void ToXML (StreamString &strm) const ;
122
+ void ToXML (Stream &strm) const ;
123
123
124
124
private:
125
125
const std::string m_id;
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ std::string RegisterFlags::AsTable(uint32_t max_width) const {
190
190
return table;
191
191
}
192
192
193
- void RegisterFlags::ToXML (StreamString &strm) const {
193
+ void RegisterFlags::ToXML (Stream &strm) const {
194
194
// Example XML:
195
195
// <flags id="cpsr_flags" size="4">
196
196
// <field name="incorrect" start="0" end="0"/>
@@ -213,7 +213,7 @@ void RegisterFlags::ToXML(StreamString &strm) const {
213
213
strm.Indent (" </flags>\n " );
214
214
}
215
215
216
- void RegisterFlags::Field::ToXML (StreamString &strm) const {
216
+ void RegisterFlags::Field::ToXML (Stream &strm) const {
217
217
// Example XML:
218
218
// <field name="correct" start="0" end="0"/>
219
219
strm.Indent ();
You can’t perform that action at this time.
0 commit comments