mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Fix compilation errors
This commit is contained in:
		
							parent
							
								
									bf964ac6e9
								
							
						
					
					
						commit
						f3f4871275
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -174,7 +174,7 @@ public: | |||
|     bool Close(); | ||||
| 
 | ||||
|     template <typename T> | ||||
|     size_t ReadArray(T* data, size_t length) const { | ||||
|     size_t ReadArray(T* data, size_t length) { | ||||
|         static_assert(std::is_trivially_copyable_v<T>, | ||||
|                       "Given array does not consist of trivially copyable objects"); | ||||
| 
 | ||||
|  | @ -208,7 +208,7 @@ public: | |||
|     } | ||||
| 
 | ||||
|     template <typename T> | ||||
|     size_t ReadBytes(T* data, size_t length) const { | ||||
|     size_t ReadBytes(T* data, size_t length) { | ||||
|         static_assert(std::is_trivially_copyable_v<T>, "T must be trivially copyable"); | ||||
|         return ReadArray(reinterpret_cast<char*>(data), length); | ||||
|     } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue