Fix formating

This commit is contained in:
Patrick Niklaus
2017-04-10 08:35:52 +00:00
committed by Patrick Niklaus
parent 59bbfeb67f
commit da474a16a9
2 changed files with 6 additions and 4 deletions
+4 -1
View File
@@ -177,7 +177,10 @@ template <typename DataT> void swap(vector_view<DataT> &lhs, vector_view<DataT>
}
template <typename DataT, storage::Ownership Ownership>
using InternalOrExternalVector = typename std::conditional<Ownership == storage::Ownership::External, stxxl::vector<DataT>, std::vector<DataT>>::type;
using InternalOrExternalVector =
typename std::conditional<Ownership == storage::Ownership::External,
stxxl::vector<DataT>,
std::vector<DataT>>::type;
template <typename DataT, storage::Ownership Ownership>
using ViewOrVector = typename std::conditional<Ownership == storage::Ownership::View,