We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68dc4d7 commit c26f550Copy full SHA for c26f550
1 file changed
include/stdsharp/algorithm/algorithm.h
@@ -1,8 +1,8 @@
1
#pragma once
2
3
#include "../compare/compare.h"
4
-#include "../functional/operations.h"
5
#include "../functional/invoke.h"
+#include "../functional/operations.h"
6
7
#include <gsl/gsl>
8
@@ -87,11 +87,7 @@ namespace stdsharp
87
return;
88
}
89
90
- if(pre != next && is_neq(next))
91
- {
92
- pre = ordering::unordered;
93
- return;
94
- }
+ if(pre != next && is_neq(next)) pre = ordering::unordered;
95
};
96
97
public:
0 commit comments