summaryrefslogtreecommitdiffstats
path: root/src/common/swap.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-11 14:54:33 +0200
committerLioncash <mathew1800@gmail.com>2015-09-11 14:54:33 +0200
commitbc886a7a03d2170223dff397dc2005525bf83255 (patch)
tree91510ee77e98e33360a2d9109000c2081d93698c /src/common/swap.h
parentMerge pull request #1141 from lioncash/hdr (diff)
downloadyuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.gz
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.bz2
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.lz
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.xz
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.tar.zst
yuzu-bc886a7a03d2170223dff397dc2005525bf83255.zip
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 {
typedef swap_struct_t<T, F> swapped_t;
protected:
- T value;
+ T value = T();
static T swap(T v) {
return F::swap(v);
@@ -158,7 +158,7 @@ public:
return swap(value);
}
- swap_struct_t() : value((T)0) {}
+ swap_struct_t() = default;
swap_struct_t(const T &v): value(swap(v)) {}
template <typename S>