Fix doxygen warning and make the function private.

This commit is contained in:
Vassil Vassilev 2013-12-11 10:54:49 +01:00 committed by sftnight
parent e7d38d8ef7
commit 5715c2fa3c

View File

@ -70,14 +70,6 @@ namespace cling {
///
bool RevertDecl(Decl* D) { return Visit(D); }
///\brief Function that collects the files which we must reread from disk.
///
/// For example: We must uncache the cached include, which brought a
/// declaration or a macro diretive definition in the AST.
///\param[in] D - A declaration.
///
void CollectFilesToUncache(SourceLocation Loc);
///\brief If it falls back in the base class just remove the declaration
/// only from the declaration context.
/// @param[in] D - The declaration to be removed.
@ -250,6 +242,16 @@ namespace cling {
}
/// @}
private:
///\brief Function that collects the files which we must reread from disk.
///
/// For example: We must uncache the cached include, which brought a
/// declaration or a macro diretive definition in the AST.
///\param[in] Loc - The source location of the reverted declaration.
///
void CollectFilesToUncache(SourceLocation Loc);
};
DeclReverter::~DeclReverter() {