From 31369748710fbfae5229892aa739d06322732050 Mon Sep 17 00:00:00 2001 From: Axel Naumann Date: Fri, 20 Mar 2015 15:38:44 +0100 Subject: [PATCH] Fix doxygen warnings. --- lib/Interpreter/ASTTransformer.h | 1 - lib/Interpreter/IncrementalParser.h | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Interpreter/ASTTransformer.h b/lib/Interpreter/ASTTransformer.h index 8b0b9a4c..bb3c6baa 100644 --- a/lib/Interpreter/ASTTransformer.h +++ b/lib/Interpreter/ASTTransformer.h @@ -43,7 +43,6 @@ namespace cling { ///\brief Initializes a new transaction transformer. /// ///\param[in] S - The semantic analysis object. - ///\param[in] Consumer - The consumer that can receive generated Decls. /// ASTTransformer(clang::Sema* S): m_Sema(S), m_Consumer(0), m_Transaction(nullptr) {} diff --git a/lib/Interpreter/IncrementalParser.h b/lib/Interpreter/IncrementalParser.h index a48baff5..8941d87d 100644 --- a/lib/Interpreter/IncrementalParser.h +++ b/lib/Interpreter/IncrementalParser.h @@ -126,7 +126,8 @@ namespace cling { ///\brief Commits a transaction if it was complete. I.e pipes it /// through the consumer chain, including codegen. /// - ///\param[in] T - the transaction to be committed + ///\param[in] PRT - the transaction (ParseResultTransaction, really) to be + /// committed /// void commitTransaction(ParseResultTransaction PRT);