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 | dfca6f97bcabeb67685f02b721d276fec93b4ea9 (patch) | |
tree | 5336a8aa0317f6d023fdc283ab779a9e6695f3d1 /clang/lib/CodeGen/CodeGenAction.cpp | |
parent | af94d56b56cdd6595071fcd6caf8a9224391a34d (diff) | |
download | bcm5719-llvm-dfca6f97bcabeb67685f02b721d276fec93b4ea9.tar.gz bcm5719-llvm-dfca6f97bcabeb67685f02b721d276fec93b4ea9.zip |
[C++11] Replace OwningPtr include with <memory>.
llvm-svn: 203389
Diffstat (limited to 'clang/lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 24961abc726..383f2727329 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -18,7 +18,6 @@ #include "clang/CodeGen/ModuleBuilder.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/FrontendDiagnostic.h" -#include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/SmallString.h" #include "llvm/Bitcode/ReaderWriter.h" #include "llvm/IR/DiagnosticInfo.h" @@ -31,6 +30,7 @@ #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Support/Timer.h" +#include <memory> using namespace clang; using namespace llvm; |