From: Ted Kremenek Date: Mon, 23 Feb 2009 23:27:54 +0000 (+0000) Subject: Move PTHStatCache within the anonymous namespace. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d578569d50adc6e9b1a2f91931add6b471b2378e;p=clang Move PTHStatCache within the anonymous namespace. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65348 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Lex/PTHLexer.cpp b/lib/Lex/PTHLexer.cpp index d67a4456c6..a5423d08f8 100644 --- a/lib/Lex/PTHLexer.cpp +++ b/lib/Lex/PTHLexer.cpp @@ -822,7 +822,6 @@ public: return data_type(); } }; -} class VISIBILITY_HIDDEN PTHStatCache : public StatSysCallCache { typedef OnDiskChainedHashTable CacheTy; @@ -855,6 +854,7 @@ public: return 0; } }; +} // end anonymous namespace StatSysCallCache *PTHManager::createStatCache() { return new PTHStatCache(*((PTHFileLookup*) FileLookup));