diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-19 15:35:50 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 15:35:54 +0200 |
commit | 5c47ea1a4e285920f33497f6afd85658c07a102f (patch) | |
tree | 6b567263de23160cd737b4a26e13f88de8cb41ee /src/common/swap.h | |
parent | common/swap: Use static_cast where applicable (diff) | |
download | yuzu-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 'src/common/swap.h')
-rw-r--r-- | src/common/swap.h | 2 |
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; |