TPEGFX/2015-10-29: Difference between revisions

 
(One intermediate revision by one other user not shown)
Line 13: Line 13:


===Jerry Shih===
===Jerry Shih===
* {{Bug|1204069}} - youtube video problem
** debug, pending
** it might be a layout problem.
* {{Bug|1166173}} - off-main-painting
** WIP
** update ipdl code gen for raw message passing.
* impl of move
  Message& Message::operator=(Message&& other)
  {
    .....
    std::swap(header()->source_event_id, other.header()->source_event_id);
    std::swap(header()->parent_task_id, other.header()->parent_task_id);
    std::swap(header()->source_event_type, other.header()->source_event_type);
    return *this;
  }
  c++98:
  template <class T> void swap ( T& a, T& b )
  {
    T c(a); a=b; b=c;
  }
  c++11:
  template <class T> void swap (T& a, T& b)
  {
    T c(std::move(a)); a=std::move(b); b=std::move(c);
  }


===Morris Tseng===
===Morris Tseng===
Line 60: Line 88:


===Team===
===Team===
* Managers meeting minutes


==Rule of Thumb==
==Rule of Thumb==
Confirmed users
489

edits