summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-20 00:58:41 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-20 00:58:41 +0000
commit9a5c432a3d82d208c92d82cbf17fc7b6613698a9 (patch)
tree96ffa2a9d71fbd7642e1186bd6ba7013a80dc189 /include
parent9a55e8517bc59f9f6aaf78dd056525292e7cde45 (diff)
downloadllvm-9a5c432a3d82d208c92d82cbf17fc7b6613698a9.tar.gz
llvm-9a5c432a3d82d208c92d82cbf17fc7b6613698a9.tar.bz2
llvm-9a5c432a3d82d208c92d82cbf17fc7b6613698a9.tar.xz
Wrap long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19050 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/System/Memory.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/System/Memory.h b/include/llvm/System/Memory.h
index 3b319cb3ba..4c360e7c68 100644
--- a/include/llvm/System/Memory.h
+++ b/include/llvm/System/Memory.h
@@ -48,11 +48,12 @@ namespace sys {
static MemoryBlock AllocateRWX(unsigned NumBytes);
/// This method releases a block of Read/Write/Execute memory that was
- /// allocated with the AllocateRWX method. It should not be used to release
- /// any memory block allocated any other way.
+ /// allocated with the AllocateRWX method. It should not be used to
+ /// release any memory block allocated any other way.
/// @throws std::string if an error occurred.
/// @brief Release Read/Write/Execute memory.
static void ReleaseRWX(MemoryBlock& block);
+
/// @}
};
}