mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #1145 from lioncash/cast
common: Get rid of a cast in swap.h
This commit is contained in:
		
						commit
						8c573218b1
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -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> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue