[llvm] r231561 - [Modules] Include the header needed for make_unique, otherwise we can't
Chandler Carruth
chandlerc at gmail.com
Sat Mar 7 02:55:47 PST 2015
Author: chandlerc
Date: Sat Mar 7 04:55:47 2015
New Revision: 231561
URL: http://llvm.org/viewvc/llvm-project?rev=231561&view=rev
Log:
[Modules] Include the header needed for make_unique, otherwise we can't
build this header in a module.
Modified:
llvm/trunk/include/llvm/IR/PassManagerInternal.h
Modified: llvm/trunk/include/llvm/IR/PassManagerInternal.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PassManagerInternal.h?rev=231561&r1=231560&r2=231561&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PassManagerInternal.h (original)
+++ llvm/trunk/include/llvm/IR/PassManagerInternal.h Sat Mar 7 04:55:47 2015
@@ -19,6 +19,7 @@
#define LLVM_IR_PASSMANAGERINTERNAL_H
#include "llvm/ADT/StringRef.h"
+#include "llvm/ADT/STLExtras.h"
namespace llvm {
More information about the llvm-commits
mailing list