mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Really minor clean-ups.
This commit is contained in:
parent
01dc36d29d
commit
76c8400049
34 changed files with 142 additions and 143 deletions
|
|
@ -45,13 +45,13 @@ public:
|
|||
inline RectanglePlacement() noexcept : flags (centred) {}
|
||||
|
||||
/** Creates a copy of another RectanglePlacement object. */
|
||||
RectanglePlacement (const RectanglePlacement& other) noexcept;
|
||||
RectanglePlacement (const RectanglePlacement&) noexcept;
|
||||
|
||||
/** Copies another RectanglePlacement object. */
|
||||
RectanglePlacement& operator= (const RectanglePlacement& other) noexcept;
|
||||
RectanglePlacement& operator= (const RectanglePlacement&) noexcept;
|
||||
|
||||
bool operator== (const RectanglePlacement& other) const noexcept;
|
||||
bool operator!= (const RectanglePlacement& other) const noexcept;
|
||||
bool operator== (const RectanglePlacement&) const noexcept;
|
||||
bool operator!= (const RectanglePlacement&) const noexcept;
|
||||
|
||||
//==============================================================================
|
||||
/** Flag values that can be combined and used in the constructor. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue