mirror of
				https://github.com/Zygo/bees.git
				synced 2025-11-03 19:50:34 +01:00 
			
		
		
		
	trivial: mass purge of whitespace errors
Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
		@@ -130,7 +130,7 @@
 | 
			
		||||
	};
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
	 
 | 
			
		||||
 | 
			
		||||
#ifndef BTRFS_IOC_CLONE_RANGE
 | 
			
		||||
 | 
			
		||||
	struct btrfs_ioctl_clone_range_args {
 | 
			
		||||
 
 | 
			
		||||
@@ -77,7 +77,7 @@ namespace crucible {
 | 
			
		||||
	void
 | 
			
		||||
	TimeQueue<Task>::push(const Task &task, double delay)
 | 
			
		||||
	{
 | 
			
		||||
		Timestamp time = chrono::high_resolution_clock::now() + 
 | 
			
		||||
		Timestamp time = chrono::high_resolution_clock::now() +
 | 
			
		||||
			chrono::duration_cast<chrono::high_resolution_clock::duration>(chrono::duration<double>(delay));
 | 
			
		||||
		unique_lock<mutex> lock(m_mutex);
 | 
			
		||||
		while (m_set.size() > m_max_queue_depth) {
 | 
			
		||||
@@ -91,7 +91,7 @@ namespace crucible {
 | 
			
		||||
	void
 | 
			
		||||
	TimeQueue<Task>::push_nowait(const Task &task, double delay)
 | 
			
		||||
	{
 | 
			
		||||
		Timestamp time = chrono::high_resolution_clock::now() + 
 | 
			
		||||
		Timestamp time = chrono::high_resolution_clock::now() +
 | 
			
		||||
			chrono::duration_cast<chrono::high_resolution_clock::duration>(chrono::duration<double>(delay));
 | 
			
		||||
		unique_lock<mutex> lock(m_mutex);
 | 
			
		||||
		m_set.insert(Item(time, task));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user