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 "mutextree"
      2 
      3 MutexTree const &MutexTree::operator=(MutexTree const &other) {
      4     if (this != &other) {
      5         destroy();
      6         copy(other);
      7     }
      8     return *this;
      9 }