Run clang-format
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
template<>
|
||||
class packaged_task<std::string(std::vector<char>*,int)>
|
||||
{
|
||||
template <>
|
||||
class packaged_task<std::string(std::vector<char>*, int)> {
|
||||
public:
|
||||
template<typename Callable>
|
||||
explicit packaged_task(Callable&& f);
|
||||
std::future<std::string> get_future();
|
||||
void operator()(std::vector<char>*,int);
|
||||
template <typename Callable>
|
||||
explicit packaged_task(Callable&& f);
|
||||
std::future<std::string> get_future();
|
||||
void operator()(std::vector<char>*, int);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user