common/swap: Remove unnecessary const on return value of swap()

This commit is contained in:
Lioncash 2018-07-19 09:35:50 -04:00
parent 0a868641fa
commit 5c47ea1a4e

View File

@ -177,7 +177,7 @@ protected:
}
public:
T const swap() const {
T swap() const {
return swap(value);
}
swap_struct_t() = default;