summaryrefslogtreecommitdiff
path: root/utils/sparse_vector.h
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-08-11 02:55:42 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-08-11 02:55:42 +0000
commit65e5edaa8aa920c7502dd78a71f29a538b0b75f0 (patch)
tree1b50fd780e3f676151faa53ff344bb9684cfaa3c /utils/sparse_vector.h
parent7592b908b684b84bc20ec0cfa2d5d97e16aead7b (diff)
sparse vector ::swap
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@513 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'utils/sparse_vector.h')
-rw-r--r--utils/sparse_vector.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/sparse_vector.h b/utils/sparse_vector.h
index 207489c5..e8e9c2f7 100644
--- a/utils/sparse_vector.h
+++ b/utils/sparse_vector.h
@@ -412,6 +412,11 @@ private:
MapType values_;
};
+template <class T>
+inline void swap(SparseVector<T> &a,SparseVector<T> &b) {
+ a.swap(b);
+}
+
//like a pair but can live in a union, because it lacks default+copy ctors, dtor.
template <class T>
struct feature_val {