summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icespider/core/flatMap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/icespider/core/flatMap.h b/icespider/core/flatMap.h
index 2b5d5be..33e1f24 100644
--- a/icespider/core/flatMap.h
+++ b/icespider/core/flatMap.h
@@ -5,7 +5,7 @@
#include <vector>
namespace IceSpider {
- template<typename K, typename M, typename Comp = std::less<K>>
+ template<typename K, typename M, typename Comp = std::less<>>
class flatmap : std::vector<std::pair<std::decay_t<K>, std::decay_t<M>>> {
public:
using V = std::pair<std::decay_t<K>, std::decay_t<M>>;