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/Frontend/CompilerInvocation.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/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index 44fbf45bd1..20e59c2726 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/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; |