Browse Source

Minor cleanup: removed superfluous semicolon after a member function definition.

tags/2021-05-28
Timur Doumler 9 years ago
parent
commit
4d41bdd7c9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/text/juce_StringArray.h

+ 1
- 1
modules/juce_core/text/juce_StringArray.h View File

@@ -118,7 +118,7 @@ public:
//==============================================================================
/** Returns the number of strings in the array */
inline int size() const noexcept { return strings.size(); };
inline int size() const noexcept { return strings.size(); }
/** Returns true if the array is empty, false otherwise. */
inline bool isEmpty() const noexcept { return size() == 0; }


Loading…
Cancel
Save