summaryrefslogtreecommitdiff
path: root/src/prop/minisat/mtl/Vec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/minisat/mtl/Vec.h')
-rw-r--r--src/prop/minisat/mtl/Vec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/minisat/mtl/Vec.h b/src/prop/minisat/mtl/Vec.h
index 5d8c2850e..5f85f6fcd 100644
--- a/src/prop/minisat/mtl/Vec.h
+++ b/src/prop/minisat/mtl/Vec.h
@@ -86,7 +86,7 @@ public:
const T& operator [] (int index) const { return data[index]; }
T& operator [] (int index) { return data[index]; }
- // Duplicatation (preferred instead):
+ // Duplication (preferred instead):
void copyTo(vec<T>& copy) const { copy.clear(); copy.growTo(sz); for (int i = 0; i < sz; i++) copy[i] = data[i]; }
void moveTo(vec<T>& dest) { dest.clear(true); dest.data = data; dest.sz = sz; dest.cap = cap; data = NULL; sz = 0; cap = 0; }
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback