Mark several more borrowed_ptr functions as const.
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This commit is contained in:
		| @@ -22,8 +22,8 @@ public: | |||||||
|         return *this; |         return *this; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     inline T* operator->() noexcept { return _raw; } |     inline T* operator->() const noexcept { return _raw; } | ||||||
|     inline T* GetRaw() noexcept { return _raw; } |     inline T* GetRaw() const noexcept { return _raw; } | ||||||
|  |  | ||||||
|     inline bool operator==(const borrowed_ptr& rhs) const { return _raw == rhs._raw; } |     inline bool operator==(const borrowed_ptr& rhs) const { return _raw == rhs._raw; } | ||||||
|     inline bool operator!=(const borrowed_ptr& rhs) const { return _raw != rhs._raw; } |     inline bool operator!=(const borrowed_ptr& rhs) const { return _raw != rhs._raw; } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user