missing-header.patch 676 B

1234567891011121314151617181920212223
  1. From df6e2f445d3e2925a94d22faeb17be9444513e92 Mon Sep 17 00:00:00 2001
  2. From: Jonathan Wakely <jwakely@redhat.com>
  3. Date: Mon, 30 Jan 2017 15:41:53 +0000
  4. Subject: [PATCH] Add missing header for std::function and std::bind
  5. ---
  6. src/pingus/screens/demo_session.cpp | 1 +
  7. 1 file changed, 1 insertion(+)
  8. diff --git a/src/pingus/screens/demo_session.cpp b/src/pingus/screens/demo_session.cpp
  9. index e3ec49a2c..f887e50f0 100644
  10. --- a/src/pingus/screens/demo_session.cpp
  11. +++ b/src/pingus/screens/demo_session.cpp
  12. @@ -18,6 +18,7 @@
  13. #include <algorithm>
  14. #include <iostream>
  15. +#include <functional>
  16. #include "engine/gui/gui_manager.hpp"
  17. #include "engine/gui/surface_button.hpp"