diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-18 16:24:33 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-18 16:27:03 +0200 |
commit | 7c9f7452f4fd775ff80dbdfc27a6bfa07a1e8fcc (patch) | |
tree | 008b7c8a8d90308a0f99587413b3b7633ba82e85 /drivers/windows/file_access_windows.cpp | |
parent | ce53876a444974d091da8a3ba77e16101ed2ff67 (diff) | |
download | redot-engine-7c9f7452f4fd775ff80dbdfc27a6bfa07a1e8fcc.tar.gz |
Style: Format code with clang-format 6.0.1
Diffstat (limited to 'drivers/windows/file_access_windows.cpp')
-rw-r--r-- | drivers/windows/file_access_windows.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/windows/file_access_windows.cpp b/drivers/windows/file_access_windows.cpp index aa0fd34e0a..ea194e5eae 100644 --- a/drivers/windows/file_access_windows.cpp +++ b/drivers/windows/file_access_windows.cpp @@ -141,9 +141,9 @@ void FileAccessWindows::close() { bool rename_error = true; int attempts = 4; while (rename_error && attempts) { - // This workaround of trying multiple times is added to deal with paranoid Windows - // antiviruses that love reading just written files even if they are not executable, thus - // locking the file and preventing renaming from happening. + // This workaround of trying multiple times is added to deal with paranoid Windows + // antiviruses that love reading just written files even if they are not executable, thus + // locking the file and preventing renaming from happening. #ifdef UWP_ENABLED // UWP has no PathFileExists, so we check attributes instead |