Skip to content

Commit 8813224

Browse files
committed
Clang-format unrelated changes.
1 parent 0a7e65a commit 8813224

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/IR/IR.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ void Module::dump() {
474474
llvm::outs() << sb.str();
475475
}
476476

477-
static std::string getEscapedDottyType(const TypeRef& type) {
477+
static std::string getEscapedDottyType(const TypeRef &type) {
478478
std::string buffer;
479479
llvm::raw_string_ostream stream(buffer);
480480
stream << type;

tools/ClassGen/InstrBuilder.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ void InstrBuilder::emitPrettyPrinter(std::ostream &os) const {
142142
os << "\tos << \" {\";\n";
143143
bool first = true;
144144
for (const auto &mem : members_) {
145-
os << "\tos << \"" << (first ? " " : ", ") << mem.second
146-
<< ": \" << "
145+
os << "\tos << \"" << (first ? " " : ", ") << mem.second << ": \" << "
147146
<< "get" << mem.second << "();\n";
148147
first = false;
149148
}

0 commit comments

Comments
 (0)