summaryrefslogtreecommitdiff
path: root/utils/sparse_vector.h
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2011-05-03 12:13:39 -0400
committerJonathan Clark <jon.h.clark@gmail.com>2011-05-03 12:13:39 -0400
commit3dec805a31b4542eee07adc6d2f42f77f7980045 (patch)
tree7d29e2b5f9e9a00953d1b6771816607c6d2de071 /utils/sparse_vector.h
parent148c0d57317e097f94a1562452bc50cdc23408dc (diff)
parentc214f83e941b10daa47dc9a6f0352dde42dbadb4 (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'utils/sparse_vector.h')
-rw-r--r--utils/sparse_vector.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/sparse_vector.h b/utils/sparse_vector.h
index 274220ef..e3721b50 100644
--- a/utils/sparse_vector.h
+++ b/utils/sparse_vector.h
@@ -54,16 +54,16 @@ SparseVector<T> operator*(const SparseVector<T>& a, const T& b) {
return result *= b;
}
-template <class T>
-SparseVector<T> operator/(const SparseVector<T>& a, const double& b) {
+template <class T, typename S>
+SparseVector<T> operator/(const SparseVector<T>& a, const S& b) {
SparseVector<T> result = a;
- return result *= b;
+ return result /= b;
}
template <class T>
-SparseVector<T> operator/(const SparseVector<T>& a, const T& b) {
+SparseVector<T> operator/(const SparseVector<T>& a, const double& b) {
SparseVector<T> result = a;
- return result *= b;
+ return result /= b;
}
#include "fdict.h"