summaryrefslogtreecommitdiff
path: root/sets.h
diff options
context:
space:
mode:
authorMendes Oulamara <oulamara@clipper.ens.fr>2013-11-27 21:47:34 +0100
committerMendes Oulamara <oulamara@clipper.ens.fr>2013-11-27 21:47:34 +0100
commitf120f1b8496cf237eade0a435347a70c1e212d5d (patch)
tree7524c885331197e9229f135b787ca10d5a59e97d /sets.h
parentdc617f842ca537068b5e4775906e85defb468724 (diff)
downloadAlgoProg-Projet-f120f1b8496cf237eade0a435347a70c1e212d5d.tar.gz
AlgoProg-Projet-f120f1b8496cf237eade0a435347a70c1e212d5d.zip
Debug bitsets
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 ffdf82d..7774e7d 100644
--- a/sets.h
+++ b/sets.h
@@ -14,7 +14,7 @@
#ifdef BITSETS
typedef struct {
- int N;
+ int size;
unsigned long long* tab;
} set;
#endif