File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -474,7 +474,7 @@ void Module::dump() {
474
474
llvm::outs () << sb.str ();
475
475
}
476
476
477
- static std::string getEscapedDottyType (const TypeRef& type) {
477
+ static std::string getEscapedDottyType (const TypeRef & type) {
478
478
std::string buffer;
479
479
llvm::raw_string_ostream stream (buffer);
480
480
stream << type;
Original file line number Diff line number Diff line change @@ -142,8 +142,7 @@ void InstrBuilder::emitPrettyPrinter(std::ostream &os) const {
142
142
os << " \t os << \" {\" ;\n " ;
143
143
bool first = true ;
144
144
for (const auto &mem : members_) {
145
- os << " \t os << \" " << (first ? " " : " , " ) << mem.second
146
- << " : \" << "
145
+ os << " \t os << \" " << (first ? " " : " , " ) << mem.second << " : \" << "
147
146
<< " get" << mem.second << " ();\n " ;
148
147
first = false ;
149
148
}
You can’t perform that action at this time.
0 commit comments