[promises] Remove extra semicolon (#33017)

<!--

If you know who should review your pull request, please assign it to
that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the
appropriate
lang label.

-->
pull/33031/head
Bulat Gaifullin 2 years ago committed by GitHub
parent d0c1809840
commit e2fcade407
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/lib/promise/detail/promise_factory.h

@ -169,7 +169,7 @@ absl::enable_if_t<IsVoidCallable<ResultOf<F()>>::value,
PromiseLike<decltype(std::declval<F>()())>>
PromiseFactoryImpl(F&& f) {
return f();
};
}
template <typename A, typename F>
class OncePromiseFactory {

Loading…
Cancel
Save