Procházet zdrojové kódy

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

Trivial change adding a missing `Nonnull<>` to `RewritableMixin`.
Adrien Leravat před 3 roky
rodič
revize
34ec3ce74b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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());