diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-07-09 01:01:52 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-07-09 01:01:52 +0000 |
commit | 63350578243214a461e7ead5d37240bcb103df37 (patch) | |
tree | fd46278036e57feefa24a5e6fbc928c35d4a0bc0 /clang/lib/Frontend/PCHContainerOperations.cpp | |
parent | d1f169b744b14aaeaca7e7b254ee34e80b037254 (diff) | |
download | bcm5719-llvm-63350578243214a461e7ead5d37240bcb103df37.tar.gz bcm5719-llvm-63350578243214a461e7ead5d37240bcb103df37.zip |
Move the definition of ~PCHContainerOperations from Basic into Frontend.
Fixes PR24067.
llvm-svn: 241770
Diffstat (limited to 'clang/lib/Frontend/PCHContainerOperations.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHContainerOperations.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/Frontend/PCHContainerOperations.cpp b/clang/lib/Frontend/PCHContainerOperations.cpp index c749bb5c8db..6d6d3ff22db 100644 --- a/clang/lib/Frontend/PCHContainerOperations.cpp +++ b/clang/lib/Frontend/PCHContainerOperations.cpp @@ -18,6 +18,8 @@ #include "clang/Lex/ModuleLoader.h" using namespace clang; +PCHContainerOperations::~PCHContainerOperations() {} + namespace { /// \brief A PCHContainerGenerator that writes out the PCH to a flat file. @@ -66,3 +68,4 @@ void RawPCHContainerOperations::ExtractPCH( StreamFile.init((const unsigned char *)Buffer.getBufferStart(), (const unsigned char *)Buffer.getBufferEnd()); } + |