mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
		
							parent
							
								
									aff81d318b
								
							
						
					
					
						commit
						c911781c21
					
				
					 243 changed files with 483 additions and 481 deletions
				
			
		|  | @ -20,7 +20,7 @@ void safe_write(CircularBuffer& buffer, u8 i) | |||
|     Bytes b { &i, 1 }; | ||||
|     auto written_bytes = buffer.write(b); | ||||
|     EXPECT_EQ(written_bytes, 1ul); | ||||
| }; | ||||
| } | ||||
| 
 | ||||
| void safe_read(CircularBuffer& buffer, u8 supposed_result) | ||||
| { | ||||
|  | @ -29,12 +29,12 @@ void safe_read(CircularBuffer& buffer, u8 supposed_result) | |||
|     b = buffer.read(b); | ||||
|     EXPECT_EQ(b.size(), 1ul); | ||||
|     EXPECT_EQ(*b.data(), supposed_result); | ||||
| }; | ||||
| } | ||||
| 
 | ||||
| void safe_discard(CircularBuffer& buffer, size_t size) | ||||
| { | ||||
|     TRY_OR_FAIL(buffer.discard(size)); | ||||
| }; | ||||
| } | ||||
| 
 | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy Flynn
						Timothy Flynn