Skip to content

Commit

Permalink
Make set compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Kornyakov committed Sep 16, 2015
1 parent 053a1a5 commit 1e3877e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@

#include "tset.h"

TSet::TSet(int mp)
TSet::TSet(int mp) : BitField(-1)
{
}

// конструктор копирования
TSet::TSet(const TSet &s)
TSet::TSet(const TSet &s) : BitField(-1)
{
}

// конструктор преобразования типа
TSet::TSet(const TBitField &bf)
TSet::TSet(const TBitField &bf) : BitField(-1)
{
}

TSet::operator TBitField()
{
{
}

int TSet::GetMaxPower(void) const // получить макс. к-во эл-тов
Expand All @@ -44,7 +44,7 @@ void TSet::DelElem(const int Elem) // исключение элемента мн
// теоретико-множественные операции

TSet& TSet::operator=(const TSet &s) // присваивание
{
{
}

int TSet::operator==(const TSet &s) const // сравнение
Expand Down

0 comments on commit 1e3877e

Please sign in to comment.