aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
+
/// @}
};
}