$OpenBSD: patch-tests_closure_test_cpp,v 1.1 2014/10/04 22:34:27 zhuk Exp $
Unbreak tests.
--- tests/closure_test.cpp.orig	Sun Oct  5 00:12:26 2014
+++ tests/closure_test.cpp	Sun Oct  5 00:26:17 2014
@@ -1,5 +1,8 @@
 #include "gtest/gtest.h"
 
+#include <boost/scoped_ptr.hpp>
+#include <boost/function.hpp>
+
 #include <QCoreApplication>
 #include <QPointer>
 #include <QSharedPointer>
@@ -92,7 +95,7 @@ TEST(ClosureTest, ClosureWorksWithStandardFunctions) {
   bool called = false;
   int question = 42;
   int answer = 0;
-  std::tr1::function<void(bool*,int,int*)> callback(&Foo);
+  std::function<void(bool*,int,int*)> callback(&Foo);
   NewClosure(
       &sender, SIGNAL(Emitted()),
       callback, &called, question, &answer);
