diff options
author | Mitch Phillips <mitchphillips@outlook.com> | 2017-11-02 18:04:44 +0000 |
---|---|---|
committer | Mitch Phillips <mitchphillips@outlook.com> | 2017-11-02 18:04:44 +0000 |
commit | 6d2590baecad0fdbd95c073900a7d84222648267 (patch) | |
tree | 6aa125ca892345e42b8ec9740b84bd4e4bbb5431 | |
parent | cd1b93c4e4b0846fe4463a0272f649e49f723608 (diff) | |
download | bcm5719-llvm-6d2590baecad0fdbd95c073900a7d84222648267.tar.gz bcm5719-llvm-6d2590baecad0fdbd95c073900a7d84222648267.zip |
Fixed line length style issue.
Reviewers: zturner
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D39395
llvm-svn: 317223
-rw-r--r-- | llvm/include/llvm/Support/MemoryBuffer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/MemoryBuffer.h b/llvm/include/llvm/Support/MemoryBuffer.h index 73f0251a6b6..59c93f15d7b 100644 --- a/llvm/include/llvm/Support/MemoryBuffer.h +++ b/llvm/include/llvm/Support/MemoryBuffer.h @@ -136,7 +136,8 @@ public: /// Map a subrange of the specified file as a MemoryBuffer. static ErrorOr<std::unique_ptr<MemoryBuffer>> - getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset, bool IsVolatile = false); + getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset, + bool IsVolatile = false); //===--------------------------------------------------------------------===// // Provided for performance analysis. |