chore: missing annotation

This commit is contained in:
Leonardo de Moura 2022-10-14 20:38:06 -07:00
parent 6378283fa8
commit 1eda0fd734

View file

@ -31,6 +31,7 @@ instance : MonadControl m (ReaderT ρ m) where
liftWith f ctx := f fun x => x ctx
restoreM x _ := x
@[alwaysInline]
instance ReaderT.tryFinally [MonadFinally m] [Monad m] : MonadFinally (ReaderT ρ m) where
tryFinally' x h ctx := tryFinally' (x ctx) (fun a? => h a? ctx)