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/DataExtractor.h | |
parent | b8a2042aa938069e862750553db0e4d82d25822c (diff) |
Notes
Diffstat (limited to 'include/llvm/Support/DataExtractor.h')
-rw-r--r-- | include/llvm/Support/DataExtractor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/DataExtractor.h b/include/llvm/Support/DataExtractor.h index 31447882a919..3a6ada6c77df 100644 --- a/include/llvm/Support/DataExtractor.h +++ b/include/llvm/Support/DataExtractor.h @@ -51,13 +51,13 @@ public: DataExtractor(StringRef Data, bool IsLittleEndian, uint8_t AddressSize) : Data(Data), IsLittleEndian(IsLittleEndian), AddressSize(AddressSize) {} - /// \brief Get the data pointed to by this extractor. + /// Get the data pointed to by this extractor. StringRef getData() const { return Data; } - /// \brief Get the endianness for this extractor. + /// Get the endianness for this extractor. bool isLittleEndian() const { return IsLittleEndian; } - /// \brief Get the address size for this extractor. + /// Get the address size for this extractor. uint8_t getAddressSize() const { return AddressSize; } - /// \brief Set the address size for this extractor. + /// Set the address size for this extractor. void setAddressSize(uint8_t Size) { AddressSize = Size; } /// Extract a C string from \a *offset_ptr. |