52 lines
1.4 KiB
Diff
52 lines
1.4 KiB
Diff
From 8a6cc8b5069265e1e92e22def985e22c5955e503 Mon Sep 17 00:00:00 2001
|
|
From: Morris Hafner <mmha@users.noreply.github.com>
|
|
Date: Mon, 13 Feb 2017 17:46:46 +0100
|
|
Subject: [PATCH] Add missing <functional> includes (#5630)
|
|
|
|
---
|
|
src/core/mergedproxymodel.cpp | 1 +
|
|
src/devices/giolister.cpp | 1 +
|
|
src/library/groupbydialog.cpp | 2 ++
|
|
3 files changed, 4 insertions(+)
|
|
|
|
diff --git a/src/core/mergedproxymodel.cpp b/src/core/mergedproxymodel.cpp
|
|
index 56217f6fd..8c210d391 100644
|
|
--- a/src/core/mergedproxymodel.cpp
|
|
+++ b/src/core/mergedproxymodel.cpp
|
|
@@ -23,6 +23,7 @@
|
|
|
|
#include <QStringList>
|
|
|
|
+#include <functional>
|
|
#include <limits>
|
|
|
|
// boost::multi_index still relies on these being in the global namespace.
|
|
diff --git a/src/devices/giolister.cpp b/src/devices/giolister.cpp
|
|
index aa3bddb34..5f63ef248 100644
|
|
--- a/src/devices/giolister.cpp
|
|
+++ b/src/devices/giolister.cpp
|
|
@@ -17,6 +17,7 @@
|
|
|
|
#include "config.h"
|
|
|
|
+#include <functional>
|
|
#include <memory>
|
|
|
|
#include <QFile>
|
|
diff --git a/src/library/groupbydialog.cpp b/src/library/groupbydialog.cpp
|
|
index 5efdc9f36..e5f711b34 100644
|
|
--- a/src/library/groupbydialog.cpp
|
|
+++ b/src/library/groupbydialog.cpp
|
|
@@ -20,6 +20,8 @@
|
|
|
|
#include <QPushButton>
|
|
|
|
+#include <functional>
|
|
+
|
|
// boost::multi_index still relies on these being in the global namespace.
|
|
using std::placeholders::_1;
|
|
using std::placeholders::_2;
|
|
--
|
|
2.13.4
|
|
|