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
|
|
@ -40,12 +40,12 @@ class JUCE_API RelativePointPath
|
|||
public:
|
||||
//==============================================================================
|
||||
RelativePointPath();
|
||||
RelativePointPath (const RelativePointPath& other);
|
||||
RelativePointPath (const RelativePointPath&);
|
||||
explicit RelativePointPath (const Path& path);
|
||||
~RelativePointPath();
|
||||
|
||||
bool operator== (const RelativePointPath& other) const noexcept;
|
||||
bool operator!= (const RelativePointPath& other) const noexcept;
|
||||
bool operator== (const RelativePointPath&) const noexcept;
|
||||
bool operator!= (const RelativePointPath&) const noexcept;
|
||||
|
||||
//==============================================================================
|
||||
/** Resolves this points in this path and adds them to a normal Path object. */
|
||||
|
|
@ -55,7 +55,7 @@ public:
|
|||
bool containsAnyDynamicPoints() const;
|
||||
|
||||
/** Quickly swaps the contents of this path with another. */
|
||||
void swapWith (RelativePointPath& other) noexcept;
|
||||
void swapWith (RelativePointPath&) noexcept;
|
||||
|
||||
//==============================================================================
|
||||
/** The types of element that may be contained in this path.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue