Skip to content

Commit

Permalink
Unreviewed, fix build warning in WebCoreArgumentCoders
Browse files Browse the repository at this point in the history
* Shared/WebCoreArgumentCoders.cpp:
(IPC::ArgumentCoder<Region::Span>::decode):
  • Loading branch information
mcatanzaro committed Aug 4, 2019
1 parent 136ec9c commit a557bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/WebKit/Shared/WebCoreArgumentCoders.cpp
Expand Up @@ -924,7 +924,7 @@ Optional<Region::Span> ArgumentCoder<Region::Span>::decode(Decoder& decoder)
return WTF::nullopt;

span.segmentIndex = segmentIndex;
return WTFMove(span);
return span;
}

void ArgumentCoder<Region>::encode(Encoder& encoder, const Region& region)
Expand Down

0 comments on commit a557bdd

Please sign in to comment.