From: Mitch Phillips Date: Thu, 2 Nov 2017 18:04:44 +0000 (+0000) Subject: Fixed line length style issue. X-Git-Tag: android-x86-7.1-r4~9007 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4c88213d82fbff2542c5aaa8ffb7b0d93c66b6cb;p=android-x86%2Fexternal-llvm.git Fixed line length style issue. Reviewers: zturner Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D39395 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317223 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/MemoryBuffer.h b/include/llvm/Support/MemoryBuffer.h index 73f0251a6b6..59c93f15d7b 100644 --- a/include/llvm/Support/MemoryBuffer.h +++ b/include/llvm/Support/MemoryBuffer.h @@ -136,7 +136,8 @@ public: /// Map a subrange of the specified file as a MemoryBuffer. static ErrorOr> - 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.