mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Make NamedEntityInterface non-movable (#946)
This commit is contained in:
@@ -213,11 +213,11 @@ void Value::Print(llvm::raw_ostream& out) const {
|
||||
if (fn_type.deduced().size() > 0) {
|
||||
out << "[";
|
||||
unsigned int i = 0;
|
||||
for (const auto& deduced : fn_type.deduced()) {
|
||||
for (Nonnull<const GenericBinding*> deduced : fn_type.deduced()) {
|
||||
if (i != 0) {
|
||||
out << ", ";
|
||||
}
|
||||
out << deduced.name() << ":! " << deduced.type();
|
||||
out << deduced->name() << ":! " << deduced->type();
|
||||
++i;
|
||||
}
|
||||
out << "]";
|
||||
|
||||
Reference in New Issue
Block a user