diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-03-11 17:09:29 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-03-11 17:09:29 +0000 |
commit | f05b42e960a9badf37e17d896d5764ef9ffce8f2 (patch) | |
tree | 10eee8db975f1714b0474645422a520d47791813 /lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h | |
parent | 5ccb339107b40acb7f39743e2b21ef73a6406915 (diff) | |
download | bcm5719-llvm-f05b42e960a9badf37e17d896d5764ef9ffce8f2.tar.gz bcm5719-llvm-f05b42e960a9badf37e17d896d5764ef9ffce8f2.zip |
Bring Doxygen comment syntax in sync with LLVM coding style.
This changes '@' prefix to '\'.
llvm-svn: 355841
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h index d730acdf784..1aa13095898 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h @@ -25,7 +25,7 @@ class ASTStructExtractor; class ClangExpressionParser; //---------------------------------------------------------------------- -/// @class ClangFunctionCaller ClangFunctionCaller.h +/// \class ClangFunctionCaller ClangFunctionCaller.h /// "lldb/Expression/ClangFunctionCaller.h" Encapsulates a function that can /// be called. /// @@ -77,7 +77,7 @@ class ClangFunctionCaller : public FunctionCaller { /// Return the object that the parser should allow to access ASTs. May be /// NULL if the ASTs do not need to be transformed. /// - /// @param[in] passthrough + /// \param[in] passthrough /// The ASTConsumer that the returned transformer should send /// the ASTs to after transformation. //------------------------------------------------------------------ @@ -96,21 +96,21 @@ public: //------------------------------------------------------------------ /// Constructor /// - /// @param[in] exe_scope + /// \param[in] exe_scope /// An execution context scope that gets us at least a target and /// process. /// - /// @param[in] ast_context + /// \param[in] ast_context /// The AST context to evaluate argument types in. /// - /// @param[in] return_qualtype + /// \param[in] return_qualtype /// An opaque Clang QualType for the function result. Should be /// defined in ast_context. /// - /// @param[in] function_address + /// \param[in] function_address /// The address of the function to call. /// - /// @param[in] arg_value_list + /// \param[in] arg_value_list /// The default values to use when calling this function. Can /// be overridden using WriteFunctionArguments(). //------------------------------------------------------------------ @@ -124,15 +124,15 @@ public: //------------------------------------------------------------------ /// Compile the wrapper function /// - /// @param[in] thread_to_use_sp + /// \param[in] thread_to_use_sp /// Compilation might end up calling functions. Pass in the thread you /// want the compilation to use. If you pass in an empty ThreadSP it will /// use the currently selected thread. /// - /// @param[in] diagnostic_manager + /// \param[in] diagnostic_manager /// The diagnostic manager to report parser errors to. /// - /// @return + /// \return /// The number of errors. //------------------------------------------------------------------ unsigned CompileFunction(lldb::ThreadSP thread_to_use_sp, |