crossroads

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

opis.cc (182B)


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