mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	fixed invalid uuid bool operator
This commit is contained in:
		@@ -24,7 +24,7 @@ struct UUID {
 | 
			
		||||
        uuid[1] = hi;
 | 
			
		||||
    };
 | 
			
		||||
    explicit operator bool() const {
 | 
			
		||||
        return uuid[0] != INVALID_UUID[0] && uuid[1] != INVALID_UUID[1];
 | 
			
		||||
        return uuid[0] != INVALID_UUID[0] || uuid[1] != INVALID_UUID[1];
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    bool operator==(const UUID& rhs) const {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user