Style: Apply fixes from clang-format 18.1.3

This commit is contained in:
Rémi Verschelde 2025-04-25 15:07:01 +02:00
parent 9a8b5848d8
commit 2fea5c0a66
No known key found for this signature in database
GPG key ID: C3336907360768E1
47 changed files with 237 additions and 243 deletions

View file

@ -45,11 +45,11 @@
#endif
#ifdef MSVC
#define S_ISREG(m) ((m)&_S_IFREG)
#define S_ISREG(m) ((m) & _S_IFREG)
#include <io.h>
#endif
#ifndef S_ISREG
#define S_ISREG(m) ((m)&S_IFREG)
#define S_ISREG(m) ((m) & S_IFREG)
#endif
void FileAccessUnix::check_errors() const {