Reformat the code, using:

find -type f |  # list all regular files
  grep -E '\.(h|cpp|mm)$' |  # filter for source files
  grep -v '/mt_' |  # filter out generated files
  grep -v '/vendor/' | # and vendored GL
  grep -v '/test/image_loader_test.cpp' |  # and this file (has giant literals arrays)
  xargs -n 1 -P $(nproc) clang-format -i  # reformat everything

Co-authored-by: numzero <numzer0@yandex.ru>
This commit is contained in:
Desour
2024-03-20 19:35:52 +01:00
parent eb4dec46c2
commit 2bf1d12353
292 changed files with 37376 additions and 42421 deletions

View File

@ -9,27 +9,24 @@ namespace irr
namespace io
{
CReadFile::CReadFile(const io::path& fileName)
: File(0), FileSize(0), Filename(fileName)
CReadFile::CReadFile(const io::path &fileName) :
File(0), FileSize(0), Filename(fileName)
{
#ifdef _DEBUG
#ifdef _DEBUG
setDebugName("CReadFile");
#endif
#endif
openFile();
}
CReadFile::~CReadFile()
{
if (File)
fclose(File);
}
//! returns how much was read
size_t CReadFile::read(void* buffer, size_t sizeToRead)
size_t CReadFile::read(void *buffer, size_t sizeToRead)
{
if (!isOpen())
return 0;
@ -37,7 +34,6 @@ size_t CReadFile::read(void* buffer, size_t sizeToRead)
return fread(buffer, 1, sizeToRead, File);
}
//! changes position in file, returns true if successful
//! if relativeMovement==true, the pos is changed relative to current pos,
//! otherwise from begin of file
@ -49,21 +45,18 @@ bool CReadFile::seek(long finalPos, bool relativeMovement)
return fseek(File, finalPos, relativeMovement ? SEEK_CUR : SEEK_SET) == 0;
}
//! returns size of file
long CReadFile::getSize() const
{
return FileSize;
}
//! returns where in the file we are.
long CReadFile::getPos() const
{
return ftell(File);
}
//! opens the file
void CReadFile::openFile()
{
@ -75,8 +68,7 @@ void CReadFile::openFile()
File = fopen(Filename.c_str(), "rb");
if (File)
{
if (File) {
// get FileSize
fseek(File, 0, SEEK_END);
@ -85,17 +77,15 @@ void CReadFile::openFile()
}
}
//! returns name of file
const io::path& CReadFile::getFileName() const
const io::path &CReadFile::getFileName() const
{
return Filename;
}
IReadFile* CReadFile::createReadFile(const io::path& fileName)
IReadFile *CReadFile::createReadFile(const io::path &fileName)
{
CReadFile* file = new CReadFile(fileName);
CReadFile *file = new CReadFile(fileName);
if (file->isOpen())
return file;
@ -103,7 +93,5 @@ IReadFile* CReadFile::createReadFile(const io::path& fileName)
return 0;
}
} // end namespace io
} // end namespace irr