summaryrefslogtreecommitdiffstats
path: root/src/common/swap.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 15:35:50 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 15:35:54 +0200
commit5c47ea1a4e285920f33497f6afd85658c07a102f (patch)
tree6b567263de23160cd737b4a26e13f88de8cb41ee /src/common/swap.h
parentcommon/swap: Use static_cast where applicable (diff)
downloadyuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.tar
yuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.tar.gz
yuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.tar.bz2
yuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.tar.lz
yuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.tar.xz
yuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.tar.zst
yuzu-5c47ea1a4e285920f33497f6afd85658c07a102f.zip
Diffstat (limited to '')
-rw-r--r--src/common/swap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/swap.h b/src/common/swap.h
index 295c65993..fc7af4280 100644
--- a/src/common/swap.h
+++ b/src/common/swap.h
@@ -177,7 +177,7 @@ protected:
}
public:
- T const swap() const {
+ T swap() const {
return swap(value);
}
swap_struct_t() = default;