fixed a dumb thing
This commit is contained in:
parent
d69186dc44
commit
6681cc556b
2 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ public:
|
||||||
Relation(string n, vector<Attribute> a) {
|
Relation(string n, vector<Attribute> a) {
|
||||||
name = n;
|
name = n;
|
||||||
att = a;
|
att = a;
|
||||||
size = 0;
|
size = a.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
int getSize() { return size; }
|
int getSize() { return size; }
|
||||||
|
|
BIN
a.out
BIN
a.out
Binary file not shown.
Reference in a new issue