diff options
author | Ahmed Charles <ahmedcharles@gmail.com> | 2014-03-09 11:36:40 +0000 |
---|---|---|
committer | Ahmed Charles <ahmedcharles@gmail.com> | 2014-03-09 11:36:40 +0000 |
commit | f8b74ee5f07fc64f1154659b56e2fbf19dfcfc68 (patch) | |
tree | a1c416f653a175d04b92c505642bc8dba11adf90 /lib/CodeGen/ModuleBuilder.cpp | |
parent | facff14381fb9f680be94df36f06de68dd05b49a (diff) | |
download | clang-f8b74ee5f07fc64f1154659b56e2fbf19dfcfc68.tar.gz |
[C++11] Replace OwningPtr include with <memory>.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ModuleBuilder.cpp')
-rw-r--r-- | lib/CodeGen/ModuleBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ModuleBuilder.cpp b/lib/CodeGen/ModuleBuilder.cpp index 22914c3775..03aecce761 100644 --- a/lib/CodeGen/ModuleBuilder.cpp +++ b/lib/CodeGen/ModuleBuilder.cpp @@ -20,11 +20,11 @@ #include "clang/Basic/Diagnostic.h" #include "clang/Basic/TargetInfo.h" #include "clang/Frontend/CodeGenOptions.h" -#include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/StringRef.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/LLVMContext.h" #include "llvm/IR/Module.h" +#include <memory> using namespace clang; namespace { |