Use a function_ref now that it works (r221753).
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 12 Nov 2014 02:23:37 +0000 (02:23 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 12 Nov 2014 02:23:37 +0000 (02:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221756 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Linker/Linker.h

index d1c02c241d53e46834b39013ed17f4b3a56e38f0..4d1a32d781050f4bc46bba6e31ccb347bceadcf2 100644 (file)
@@ -11,8 +11,8 @@
 #define LLVM_LINKER_LINKER_H
 
 #include "llvm/ADT/SmallPtrSet.h"
+#include "llvm/ADT/STLExtras.h"
 
-#include <functional>
 
 namespace llvm {
 class DiagnosticInfo;
@@ -25,7 +25,7 @@ class StructType;
 /// something with it after the linking.
 class Linker {
   public:
-    typedef std::function<void(const DiagnosticInfo &)>
+    typedef function_ref<void(const DiagnosticInfo &)>
         DiagnosticHandlerFunction;
 
     Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler);