[Lldb-commits] [lldb] r338605 - Remove outdated documentation for Stream's LEB128 methods

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 1 11:28:54 PDT 2018


Author: teemperor
Date: Wed Aug  1 11:28:54 2018
New Revision: 338605

URL: http://llvm.org/viewvc/llvm-project?rev=338605&view=rev
Log:
Remove outdated documentation for Stream's LEB128 methods

There is no format parameter for any of these methods.

Modified:
    lldb/trunk/include/lldb/Utility/Stream.h

Modified: lldb/trunk/include/lldb/Utility/Stream.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/Stream.h?rev=338605&r1=338604&r2=338605&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/Stream.h (original)
+++ lldb/trunk/include/lldb/Utility/Stream.h Wed Aug  1 11:28:54 2018
@@ -504,9 +504,6 @@ public:
   ///
   /// @param[in] uval
   ///     A uint64_t value that was extracted as a SLEB128 value.
-  ///
-  /// @param[in] format
-  ///     The optional printf format that can be overridden.
   //------------------------------------------------------------------
   size_t PutSLEB128(int64_t uval);
 
@@ -518,9 +515,6 @@ public:
   ///
   /// @param[in] uval
   ///     A uint64_t value that was extracted as a ULEB128 value.
-  ///
-  /// @param[in] format
-  ///     The optional printf format that can be overridden.
   //------------------------------------------------------------------
   size_t PutULEB128(uint64_t uval);
 




More information about the lldb-commits mailing list