diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 |
commit | eb11fae6d08f479c0799db45860a98af528fa6e7 (patch) | |
tree | 44d492a50c8c1a7eb8e2d17ea3360ec4d066f042 /include/llvm/Support/BinaryStreamWriter.h | |
parent | b8a2042aa938069e862750553db0e4d82d25822c (diff) |
Notes
Diffstat (limited to 'include/llvm/Support/BinaryStreamWriter.h')
-rw-r--r-- | include/llvm/Support/BinaryStreamWriter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/BinaryStreamWriter.h b/include/llvm/Support/BinaryStreamWriter.h index a4495a1ce27d..6e8a68a30474 100644 --- a/include/llvm/Support/BinaryStreamWriter.h +++ b/include/llvm/Support/BinaryStreamWriter.h @@ -24,7 +24,7 @@ namespace llvm { -/// \brief Provides write only access to a subclass of `WritableBinaryStream`. +/// Provides write only access to a subclass of `WritableBinaryStream`. /// Provides bounds checking and helpers for writing certain common data types /// such as null-terminated strings, integers in various flavors of endianness, /// etc. Can be subclassed to provide reading and writing of custom datatypes, @@ -56,7 +56,7 @@ public: /// otherwise returns an appropriate error code. Error writeBytes(ArrayRef<uint8_t> Buffer); - /// Write the the integer \p Value to the underlying stream in the + /// Write the integer \p Value to the underlying stream in the /// specified endianness. On success, updates the offset so that /// subsequent writes occur at the next unwritten position. /// @@ -80,7 +80,7 @@ public: return writeInteger<U>(static_cast<U>(Num)); } - /// Write the the string \p Str to the underlying stream followed by a null + /// Write the string \p Str to the underlying stream followed by a null /// terminator. On success, updates the offset so that subsequent writes /// occur at the next unwritten position. \p Str need not be null terminated /// on input. @@ -89,7 +89,7 @@ public: /// otherwise returns an appropriate error code. Error writeCString(StringRef Str); - /// Write the the string \p Str to the underlying stream without a null + /// Write the string \p Str to the underlying stream without a null /// terminator. On success, updates the offset so that subsequent writes /// occur at the next unwritten position. /// |