Explorar o código

Explorer: add missing `Nonnull<>` (#2486)

Trivial change adding a missing `Nonnull<>` to `RewritableMixin`.
Adrien Leravat %!s(int64=3) %!d(string=hai) anos
pai
achega
34ec3ce74b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      explorer/ast/expression.h

+ 1 - 1
explorer/ast/expression.h

@@ -103,7 +103,7 @@ class RewritableMixin : public Base {
 
   // Set the rewritten form of this expression. Can only be called during type
   // checking.
-  auto set_rewritten_form(const Expression* rewritten_form) -> void {
+  auto set_rewritten_form(Nonnull<const Expression*> rewritten_form) -> void {
     CARBON_CHECK(!rewritten_form_.has_value()) << "rewritten form set twice";
     rewritten_form_ = rewritten_form;
     this->set_static_type(&rewritten_form->static_type());