Commit 5d8e16ef authored by Rosty Geyyer's avatar Rosty Geyyer
Browse files

Format

parent 69e9994c
...@@ -162,7 +162,7 @@ struct joinable_thread : std::thread ...@@ -162,7 +162,7 @@ struct joinable_thread : std::thread
{ {
} }
joinable_thread(joinable_thread&&) = default; joinable_thread(joinable_thread&&) = default;
joinable_thread& operator=(joinable_thread&&) = default; joinable_thread& operator=(joinable_thread&&) = default;
~joinable_thread() ~joinable_thread()
...@@ -271,7 +271,7 @@ struct Tensor ...@@ -271,7 +271,7 @@ struct Tensor
~Tensor() = default; ~Tensor() = default;
Tensor& operator=(const Tensor&) = default; Tensor& operator=(const Tensor&) = default;
Tensor& operator=(Tensor&&) = default; Tensor& operator=(Tensor&&) = default;
template <typename FromT> template <typename FromT>
explicit Tensor(const Tensor<FromT>& other) : Tensor(other.template CopyAsType<T>()) explicit Tensor(const Tensor<FromT>& other) : Tensor(other.template CopyAsType<T>())
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment