aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/rpc_service_response_time_dialog.cpp
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2015-07-22 17:38:51 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2015-08-18 07:55:35 +0000
commit318c3a54528364c536ae3a709e19ae38a178cefe (patch)
tree8aca39212579538f0f2e2d4e59dd1ff948bce389 /ui/qt/rpc_service_response_time_dialog.cpp
parent037524490dce2950759f29fc8e845c59c56b8197 (diff)
Qt: Add another C++ missing header: <algorithm> for std::sort()
Fix build error: ui/qt/packet_list_model.cpp:270:5: error: 'sort' is not a member of 'std' std::sort(visible_rows_.begin(), visible_rows_.end(), recordLessThan); Change-Id: I3a577a268f6c12e8fd97b7b6fd2429989c28e2f5 Reviewed-on: https://code.wireshark.org/review/10092 Petri-Dish: Michal Labedzki <michal.labedzki@tieto.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'ui/qt/rpc_service_response_time_dialog.cpp')
-rw-r--r--ui/qt/rpc_service_response_time_dialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/qt/rpc_service_response_time_dialog.cpp b/ui/qt/rpc_service_response_time_dialog.cpp
index 28b91be148..f4e5e96daf 100644
--- a/ui/qt/rpc_service_response_time_dialog.cpp
+++ b/ui/qt/rpc_service_response_time_dialog.cpp
@@ -21,6 +21,7 @@
#include "rpc_service_response_time_dialog.h"
+#include <algorithm>
#include <stdio.h>
#include <epan/dissectors/packet-dcerpc.h>