1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

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

This commit is contained in:
Timur Doumler 2016-03-18 14:41:02 +00:00
parent c088396210
commit 4d41bdd7c9

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; }