commit 2e0b4df2bd0e270f559113e81438e4251722625a
parent ebe754c2b11c6745e342a88d2db55ecdec268f9e
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date: Wed, 5 Oct 2016 07:04:00 +0300
Code formatting
Diffstat:
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/include/kfr/base/types.hpp b/include/kfr/base/types.hpp
@@ -172,7 +172,6 @@ inline datatype operator&(datatype x, datatype y)
return static_cast<datatype>(static_cast<type>(x) | static_cast<type>(y));
}
-
template <typename T>
constexpr datatype typeclass = std::is_floating_point<typename compound_type_traits<T>::subtype>::value
? datatype::f
diff --git a/include/kfr/io/audiofile.hpp b/include/kfr/io/audiofile.hpp
@@ -44,8 +44,7 @@ void write_interleaved(E1&& dest, const univector2d<Tin, Tag1, Tag2>& src)
}
else if (channels == 2)
{
- process(std::forward<E1>(dest), pack(src[0], src[1]), 0, infinite_size, nullptr, nullptr,
- csize<2>);
+ process(std::forward<E1>(dest), pack(src[0], src[1]), 0, infinite_size, nullptr, nullptr, csize<2>);
}
else
{