Skip to content
Snippets Groups Projects
Commit 28bec27d authored by Armin Felder's avatar Armin Felder
Browse files

removed execution policy as, android ndk does not support it for now

parent 3f8f11dc
Loading
......@@ -20,7 +20,6 @@
#include "sortedvector.h"
#include <execution>
template<typename T>
......@@ -67,7 +66,7 @@ int SortedVector<T>::findPosition( const QSharedPointer<T> &pointer ) const
template<typename T>
void SortedVector<T>::reOrder()
{
std::sort(std::execution::par,this->begin(),this->end(),[=](const auto &first, const auto &second)->bool{
std::sort(this->begin(),this->end(),[=](const auto &first, const auto &second)->bool{
return (*first) >(*second);
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment