| Index: ios/web/web_state/web_state_impl.mm
|
| diff --git a/ios/web/web_state/web_state_impl.mm b/ios/web/web_state/web_state_impl.mm
|
| index 4c4f20edb3db92bb2014d816968bcac19444db09..6f41e9b647410ec0ce6e048f81544c82e3c96f87 100644
|
| --- a/ios/web/web_state/web_state_impl.mm
|
| +++ b/ios/web/web_state/web_state_impl.mm
|
| @@ -48,9 +48,7 @@ std::unique_ptr<WebState> WebState::Create(const CreateParams& params) {
|
| // Initialize the new session.
|
| web_state->GetNavigationManagerImpl().InitializeSession();
|
|
|
| - // This std::move is required to compile with the version of clang shipping
|
| - // with Xcode 8.0+. Evalute whether the issue is fixed once a new version of
|
| - // Xcode is released.
|
| + // TODO(crbug.com/703565): remove std::move() once Xcode 9.0+ is required.
|
| return std::move(web_state);
|
| }
|
|
|
| @@ -60,9 +58,7 @@ std::unique_ptr<WebState> WebState::Create(const CreateParams& params,
|
| std::unique_ptr<WebStateImpl> web_state(
|
| new WebStateImpl(params, session_storage));
|
|
|
| - // This std::move is required to compile with the version of clang shipping
|
| - // with Xcode 8.0+. Evalute whether the issue is fixed once a new version of
|
| - // Xcode is released.
|
| + // TODO(crbug.com/703565): remove std::move() once Xcode 9.0+ is required.
|
| return std::move(web_state);
|
| }
|
|
|
|
|