diff options
| author | Ted Kremenek <kremenek@apple.com> | 2009-02-23 23:27:54 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2009-02-23 23:27:54 +0000 |
| commit | 29b8697393aff9acc040727c61c25bf57ba72d57 (patch) | |
| tree | 0c228fbce2b1f03ff51eab424a79f75648bc4fd1 /clang/lib/Lex | |
| parent | f6e8c77e1c46d645add7623a08e34325933752fd (diff) | |
| download | bcm5719-llvm-29b8697393aff9acc040727c61c25bf57ba72d57.tar.gz bcm5719-llvm-29b8697393aff9acc040727c61c25bf57ba72d57.zip | |
Move PTHStatCache within the anonymous namespace.
llvm-svn: 65348
Diffstat (limited to 'clang/lib/Lex')
| -rw-r--r-- | clang/lib/Lex/PTHLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/PTHLexer.cpp b/clang/lib/Lex/PTHLexer.cpp index d67a4456c6b..a5423d08f85 100644 --- a/clang/lib/Lex/PTHLexer.cpp +++ b/clang/lib/Lex/PTHLexer.cpp @@ -822,7 +822,6 @@ public: return data_type(); } }; -} class VISIBILITY_HIDDEN PTHStatCache : public StatSysCallCache { typedef OnDiskChainedHashTable<PTHStatLookupTrait> CacheTy; @@ -855,6 +854,7 @@ public: return 0; } }; +} // end anonymous namespace StatSysCallCache *PTHManager::createStatCache() { return new PTHStatCache(*((PTHFileLookup*) FileLookup)); |

