mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-01 15:50:27 +02:00
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:
@ -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
|
||||
|
Reference in New Issue
Block a user