From c0bda26f8216132898999052ea1fdbbe01fd2aa0 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 13 Nov 2017 14:57:05 +0100 Subject: [PATCH] Fix build on Centos7 (again). --- src/surf/surf_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/surf/surf_interface.cpp b/src/surf/surf_interface.cpp index 632776c082..42b84483a4 100644 --- a/src/surf/surf_interface.cpp +++ b/src/surf/surf_interface.cpp @@ -774,7 +774,7 @@ bool Action::isSuspended() void Action::heapInsert(heap_type& heap, double key, enum heap_action_type hat) { hat_ = hat; - heapHandle_ = heap.emplace(key, this); + heapHandle_ = heap.emplace(std::make_pair(key, this)); } void Action::heapRemove(heap_type& heap) @@ -792,7 +792,7 @@ void Action::heapUpdate(heap_type& heap, double key, enum heap_action_type hat) if (heapHandle_) { heap.update(*heapHandle_, std::make_pair(key, this)); } else { - heapHandle_ = heap.emplace(key, this); + heapHandle_ = heap.emplace(std::make_pair(key, this)); } } -- 2.20.1