From c125dcc6eac1e470dcc32dd7779a7f2f40a40452 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 4 Jul 2019 10:33:21 +0000 Subject: [PATCH] Fix -Wdocumentation warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365127 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DebugInfo/GSYM/InlineInfo.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/llvm/DebugInfo/GSYM/InlineInfo.h b/include/llvm/DebugInfo/GSYM/InlineInfo.h index d283409b2af..22243062293 100644 --- a/include/llvm/DebugInfo/GSYM/InlineInfo.h +++ b/include/llvm/DebugInfo/GSYM/InlineInfo.h @@ -58,10 +58,9 @@ struct InlineInfo { /// non-inlined code. /// /// \param Addr the address to lookup - /// \param InlineStack a vector of InlineInfo objects that describe the - /// inline call stack for a given address. /// - /// \returns true if successful, false otherwise + /// \returns optional vector of InlineInfo objects that describe the + /// inline call stack for a given address, false otherwise. llvm::Optional getInlineStack(uint64_t Addr) const; }; -- 2.50.1