summaryrefslogtreecommitdiff
path: root/sets.h
diff options
context:
space:
mode:
authorMendes Oulamara <oulamara@clipper.ens.fr>2013-11-28 09:52:21 +0100
committerMendes Oulamara <oulamara@clipper.ens.fr>2013-11-28 09:52:21 +0100
commitdc7b29b7dab2a8386f739c02b6a2ac09ebfccefb (patch)
tree8aa43d1cf8a88d349ce468b3845174b5971ffdc0 /sets.h
parentf120f1b8496cf237eade0a435347a70c1e212d5d (diff)
downloadAlgoProg-Projet-dc7b29b7dab2a8386f739c02b6a2ac09ebfccefb.tar.gz
AlgoProg-Projet-dc7b29b7dab2a8386f739c02b6a2ac09ebfccefb.zip
Vrai debug de bitset --'
Diffstat (limited to 'sets.h')
-rw-r--r--sets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sets.h b/sets.h
index 7774e7d..ebbed20 100644
--- a/sets.h
+++ b/sets.h
@@ -14,7 +14,7 @@
#ifdef BITSETS
typedef struct {
- int size;
+ int N, *size;
unsigned long long* tab;
} set;
#endif