summaryrefslogtreecommitdiff
path: root/utils
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
commit256dfe09345418962241f83e9bff9b4b4bba7e92 (patch)
treea9360f930376edf2e843f3b38a7ae45913eb1f66 /utils
parentae556ddeb17a9bd541cdaa7b19ba41773c91a5af (diff)
parent7892b332a583d235fd339de86df8ee6f5d8209f4 (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'utils')
-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"