crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

opis.cc (178B)


      1 #include "mutexnode"
      2 
      3 MutexNode const &MutexNode::operator=(MutexNode const &other) {
      4     if (this != &other) {
      5         destroy();
      6         copy(other);
      7     }
      8     return *this;
      9 }