summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/System/PathV2.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/System/PathV2.h b/include/llvm/System/PathV2.h
index 02362d3c42..05fc4da1da 100644
--- a/include/llvm/System/PathV2.h
+++ b/include/llvm/System/PathV2.h
@@ -122,7 +122,8 @@ error_code remove_filename(SmallVectorImpl<char> &path);
/// prepended.
/// @returns errc::success if \a path's extension has been replaced, otherwise a
/// platform specific error_code.
-error_code replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
+error_code replace_extension(SmallVectorImpl<char> &path,
+ const Twine &extension);
/// @brief Append to path.
///
@@ -794,7 +795,8 @@ error_code has_magic(const Twine &path, const Twine &magic);
/// \a path.
/// @results errc::success if result has been successfully set, otherwise a
/// platform specific error_code.
-error_code get_magic(const Twine &path, uint32_t len, SmallVectorImpl<char> &result);
+error_code get_magic(const Twine &path, uint32_t len,
+ SmallVectorImpl<char> &result);
/// @brief Is file bitcode?
///