Fix typo in doxygen doc

This commit is contained in:
Philippe Canal 2014-02-03 08:57:45 -06:00 committed by sftnight
parent b9838091fd
commit 6a957ea310

View File

@ -82,7 +82,7 @@ namespace utils {
/// std namespace (modulo inline namespace).
///
///\param[in] decl - The declaration being analyzed.
bool IsStdClass(const clang::NamedDecl &cl);
bool IsStdClass(const clang::NamedDecl &decl);
///\brief Return true if the decl has been declared in ths std namespace
/// or is a compiler details (in __gnu_cxx and starting with a leading
@ -139,8 +139,8 @@ namespace utils {
///\brief Returns the number of default argument that should be dropped.
/// from the name of the template instances.
///
///\param[in] decl - The declaration being analyzed.
unsigned int DropDefaultArg(clang::TemplateDecl &Template) const;
///\param[in] templateDecl - The declaration being analyzed.
unsigned int DropDefaultArg(clang::TemplateDecl &templateDecl) const;
bool empty() const { return m_toSkip.size()==0 && m_toReplace.empty(); }
};