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/Frontend/CompilerInvocation.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/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 44fbf45bd17..20e59c2726c 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -19,7 +19,6 @@ #include "clang/Lex/HeaderSearchOptions.h" #include "clang/Serialization/ASTReader.h" #include "llvm/ADT/Hashing.h" -#include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringSwitch.h" @@ -35,6 +34,7 @@ #include "llvm/Support/Process.h" #include "llvm/Support/system_error.h" #include <atomic> +#include <memory> #include <sys/stat.h> using namespace clang; |