summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>