[llvm] r364459 - Fix Wdocumentation warnings. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 26 11:53:24 PDT 2019
Author: rksimon
Date: Wed Jun 26 11:53:24 2019
New Revision: 364459
URL: http://llvm.org/viewvc/llvm-project?rev=364459&view=rev
Log:
Fix Wdocumentation warnings. NFCI.
Modified:
llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h
Modified: llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h?rev=364459&r1=364458&r2=364459&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/GSYM/InlineInfo.h Wed Jun 26 11:53:24 2019
@@ -47,6 +47,9 @@ struct InlineInfo {
Children.clear();
}
bool isValid() const { return !Ranges.empty(); }
+
+ typedef std::vector<const InlineInfo *> InlineArray;
+
/// Lookup an address in the InlineInfo object
///
/// This function is used to symbolicate an inline call stack and can
@@ -59,7 +62,6 @@ struct InlineInfo {
/// inline call stack for a given address.
///
/// \returns true if successful, false otherwise
- typedef std::vector<const InlineInfo *> InlineArray;
llvm::Optional<InlineArray> getInlineStack(uint64_t Addr) const;
};
More information about the llvm-commits
mailing list