mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-10-31 02:28:11 +08:00 
			
		
		
		
	Run clang-format.
This commit is contained in:
		| @@ -1,11 +1,10 @@ | ||||
| #ifndef FTXUI_COMPONENT_RECEIVER_HPP_ | ||||
| #define FTXUI_COMPONENT_RECEIVER_HPP_ | ||||
|  | ||||
| #include <iostream> | ||||
|  | ||||
| #include <atomic> | ||||
| #include <condition_variable> | ||||
| #include <functional> | ||||
| #include <iostream> | ||||
| #include <memory> | ||||
| #include <mutex> | ||||
| #include <queue> | ||||
| @@ -50,7 +49,7 @@ template <class T> | ||||
| class SenderImpl { | ||||
|  public: | ||||
|   void Send(T t) { receiver_->Receive(std::move(t)); } | ||||
|   ~SenderImpl() { receiver_->ReleaseSender();} | ||||
|   ~SenderImpl() { receiver_->ReleaseSender(); } | ||||
|  | ||||
|  private: | ||||
|   friend class ReceiverImpl<T>; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ArthurSonzogni
					ArthurSonzogni