mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
For PR797:
Final removal of exceptions from lib/System and adjustment of users to accommodate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29846 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -414,7 +414,7 @@ namespace sys {
|
||||
/// already unique.
|
||||
/// @throws std::string if an unrecoverable error occurs.
|
||||
/// @brief Make the current path name unique in the file system.
|
||||
void makeUnique( bool reuse_current = true );
|
||||
bool makeUnique( bool reuse_current /*= true*/, std::string* ErrMsg );
|
||||
|
||||
/// @}
|
||||
/// @name Disk Mutators
|
||||
@ -529,9 +529,9 @@ namespace sys {
|
||||
|
||||
/// This function can be used to copy the file specified by Src to the
|
||||
/// file specified by Dest. If an error occurs, Dest is removed.
|
||||
/// @throws std::string if an error opening or writing the files occurs.
|
||||
/// @returns true if an error occurs, false otherwise
|
||||
/// @brief Copy one file to another.
|
||||
void CopyFile(const Path& Dest, const Path& Src);
|
||||
bool CopyFile(const Path& Dest, const Path& Src, std::string* ErrMsg);
|
||||
}
|
||||
|
||||
std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath);
|
||||
|
Reference in New Issue
Block a user