diff options
author | Weiyi Wang <wwylele@gmail.com> | 2019-01-25 18:16:00 +0100 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2019-02-06 17:24:27 +0100 |
commit | 71530781f33423fc48c9bf43702f1291a38a259d (patch) | |
tree | e85db13aadb0ac8600e06ef7d0b9c08bfd25d2cb | |
parent | common/swap: use template and tag for LE/BE specification (diff) | |
download | yuzu-71530781f33423fc48c9bf43702f1291a38a259d.tar yuzu-71530781f33423fc48c9bf43702f1291a38a259d.tar.gz yuzu-71530781f33423fc48c9bf43702f1291a38a259d.tar.bz2 yuzu-71530781f33423fc48c9bf43702f1291a38a259d.tar.lz yuzu-71530781f33423fc48c9bf43702f1291a38a259d.tar.xz yuzu-71530781f33423fc48c9bf43702f1291a38a259d.tar.zst yuzu-71530781f33423fc48c9bf43702f1291a38a259d.zip |
-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 97aacb4dc..4b82865fe 100644 --- a/src/common/swap.h +++ b/src/common/swap.h @@ -172,7 +172,7 @@ struct swap_struct_t { using swapped_t = swap_struct_t; protected: - T value = T(); + T value; static T swap(T v) { return F::swap(v); |