1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Style: Apply fixes from clang-format 18.1.3

This commit is contained in:
Rémi Verschelde
2025-04-25 15:32:25 +02:00
parent c8169ea274
commit a6c5fc2720
46 changed files with 142 additions and 149 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 {