mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:02:43 +00:00 
			
		
		
		
	Everywhere: Run clang-format
This commit is contained in:
		
							parent
							
								
									0376c127f6
								
							
						
					
					
						commit
						086969277e
					
				
					 1665 changed files with 8479 additions and 8479 deletions
				
			
		|  | @ -9,7 +9,7 @@ | |||
| 
 | ||||
| namespace Kernel { | ||||
| 
 | ||||
| Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> EBRPartitionTable::try_to_initialize(const StorageDevice& device) | ||||
| Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> EBRPartitionTable::try_to_initialize(StorageDevice const& device) | ||||
| { | ||||
|     auto table = adopt_nonnull_own_or_enomem(new (nothrow) EBRPartitionTable(device)).release_value_but_fixme_should_propagate_errors(); | ||||
|     if (table->is_protective_mbr()) | ||||
|  | @ -19,7 +19,7 @@ Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> EBRPartitionTabl | |||
|     return table; | ||||
| } | ||||
| 
 | ||||
| void EBRPartitionTable::search_extended_partition(const StorageDevice& device, MBRPartitionTable& checked_ebr, u64 current_block_offset, size_t limit) | ||||
| void EBRPartitionTable::search_extended_partition(StorageDevice const& device, MBRPartitionTable& checked_ebr, u64 current_block_offset, size_t limit) | ||||
| { | ||||
|     if (limit == 0) | ||||
|         return; | ||||
|  | @ -39,7 +39,7 @@ void EBRPartitionTable::search_extended_partition(const StorageDevice& device, M | |||
|     search_extended_partition(device, *next_ebr, current_block_offset, (limit - 1)); | ||||
| } | ||||
| 
 | ||||
| EBRPartitionTable::EBRPartitionTable(const StorageDevice& device) | ||||
| EBRPartitionTable::EBRPartitionTable(StorageDevice const& device) | ||||
|     : MBRPartitionTable(device) | ||||
| { | ||||
|     if (!is_header_valid()) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Idan Horowitz
						Idan Horowitz