summaryrefslogtreecommitdiff
path: root/src/common/swap.h
diff options
context:
space:
mode:
authorGravatar Lioncash2015-09-11 08:54:33 -0400
committerGravatar Lioncash2015-09-11 08:54:33 -0400
commitbc886a7a03d2170223dff397dc2005525bf83255 (patch)
tree91510ee77e98e33360a2d9109000c2081d93698c /src/common/swap.h
parentMerge pull request #1141 from lioncash/hdr (diff)
downloadyuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.gz
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.xz
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.zip
common: Get rid of a cast in swap.h
Diffstat (limited to 'src/common/swap.h')
-rw-r--r--src/common/swap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/swap.h b/src/common/swap.h
index b92e5bfa4..a7c37bc44 100644
--- a/src/common/swap.h
+++ b/src/common/swap.h
@@ -148,7 +148,7 @@ struct swap_struct_t {
148 typedef swap_struct_t<T, F> swapped_t; 148 typedef swap_struct_t<T, F> swapped_t;
149 149
150protected: 150protected:
151 T value; 151 T value = T();
152 152
153 static T swap(T v) { 153 static T swap(T v) {
154 return F::swap(v); 154 return F::swap(v);
@@ -158,7 +158,7 @@ public:
158 return swap(value); 158 return swap(value);
159 159
160 } 160 }
161 swap_struct_t() : value((T)0) {} 161 swap_struct_t() = default;
162 swap_struct_t(const T &v): value(swap(v)) {} 162 swap_struct_t(const T &v): value(swap(v)) {}
163 163
164 template <typename S> 164 template <typename S>