diff options
Diffstat (limited to 'include/lldb/Utility/StreamGDBRemote.h')
-rw-r--r-- | include/lldb/Utility/StreamGDBRemote.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/include/lldb/Utility/StreamGDBRemote.h b/include/lldb/Utility/StreamGDBRemote.h index dfc4a39de7912..dd0ea31126d93 100644 --- a/include/lldb/Utility/StreamGDBRemote.h +++ b/include/lldb/Utility/StreamGDBRemote.h @@ -1,9 +1,8 @@ //===-- StreamGDBRemote.h ----------------------------------------*- C++-*-===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// @@ -27,18 +26,16 @@ public: ~StreamGDBRemote() override; - //------------------------------------------------------------------ /// Output a block of data to the stream performing GDB-remote escaping. /// - /// @param[in] s + /// \param[in] s /// A block of data. /// - /// @param[in] src_len + /// \param[in] src_len /// The amount of data to write. /// - /// @return + /// \return /// Number of bytes written. - //------------------------------------------------------------------ // TODO: Convert this function to take ArrayRef<uint8_t> int PutEscapedBytes(const void *s, size_t src_len); }; |