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

@ -15,12 +15,11 @@ class CIrrDeviceLinux;
class COSOperator : public IOSOperator
{
public:
// constructor
#if defined(_IRR_COMPILE_WITH_X11_DEVICE_)
COSOperator(const core::stringc& osversion, CIrrDeviceLinux* device);
COSOperator(const core::stringc &osversion, CIrrDeviceLinux *device);
#endif
COSOperator(const core::stringc& osversion);
COSOperator(const core::stringc &osversion);
~COSOperator();
@ -28,7 +27,7 @@ public:
COSOperator &operator=(const COSOperator &) = delete;
//! Get the current OS version as string.
const core::stringc& getOperatingSystemVersion() const override;
const core::stringc &getOperatingSystemVersion() const override;
//! Copies text to the clipboard
//! \param text: text in utf-8
@ -41,28 +40,27 @@ public:
//! Get text from the clipboard
//! \return Returns 0 if no string is in there, otherwise an utf-8 string.
const c8* getTextFromClipboard() const override;
const c8 *getTextFromClipboard() const override;
//! Get text from the primary selection
//! This is a no-op on some platforms.
//! \return Returns 0 if no string is in there, otherwise an utf-8 string.
const c8* getTextFromPrimarySelection() const override;
const c8 *getTextFromPrimarySelection() const override;
//! Get the total and available system RAM
/** \param totalBytes: will contain the total system memory in Kilobytes (1024 B)
\param availableBytes: will contain the available memory in Kilobytes (1024 B)
\return True if successful, false if not */
bool getSystemMemory(u32* Total, u32* Avail) const override;
bool getSystemMemory(u32 *Total, u32 *Avail) const override;
private:
core::stringc OperatingSystem;
#if defined(_IRR_COMPILE_WITH_X11_DEVICE_)
CIrrDeviceLinux * IrrDeviceLinux;
CIrrDeviceLinux *IrrDeviceLinux;
#endif
#ifdef _IRR_WINDOWS_API_
#ifdef _IRR_WINDOWS_API_
mutable core::stringc ClipboardBuf;
#endif
@ -71,7 +69,6 @@ private:
mutable char *ClipboardSelectionText = nullptr;
mutable char *PrimarySelectionText = nullptr;
#endif
};
} // end namespace