Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 617896 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/3rdparty/chromium/mojo/public/cpp/bindings/interface_ptr_info.h (-2 / +1 lines)
Lines 34-40 class InterfacePtrInfo { Link Here
34
34
35
  InterfacePtrInfo& operator=(InterfacePtrInfo&& other) {
35
  InterfacePtrInfo& operator=(InterfacePtrInfo&& other) {
36
    if (this != &other) {
36
    if (this != &other) {
37
      handle_ = other.handle_.Pass();
37
      handle_ = std::move(other.handle_);
38
      version_ = other.version_;
38
      version_ = other.version_;
39
      other.version_ = 0u;
39
      other.version_ = 0u;
40
    }
40
    }
41
- 

Return to bug 617896