]> granicus.if.org Git - llvm/commitdiff
Fix Wdocumentation warnings. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 26 Jun 2019 18:53:24 +0000 (18:53 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 26 Jun 2019 18:53:24 +0000 (18:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364459 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DebugInfo/GSYM/InlineInfo.h

index c639bf21e8116788c9edce1a1c0d5f3ae37a49bb..7f62a507fa7a4bc527787a8785ec084d7881a967 100644 (file)
@@ -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;
 };