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

Added some missing semi-colons.

This commit is contained in:
jules 2014-10-14 11:48:16 +01:00
parent 9b1d596dd5
commit e60aa581d6
8 changed files with 8 additions and 8 deletions

View file

@ -1380,7 +1380,7 @@ PathPoint PathPoint::withChangedPointType (const Path::Iterator::PathElementType
const int index = owner->points.indexOf (this);
PathPoint* lastPoint = owner->points [index - 1];
jassert (lastPoint != nullptr)
jassert (lastPoint != nullptr);
if (lastPoint != nullptr)
{
lastPoint->pos [lastPoint->getNumPoints() - 1]

View file

@ -262,7 +262,7 @@ static XmlElement* createNodeXml (AudioProcessorGraph::Node* const node) noexcep
if (plugin == nullptr)
{
jassertfalse
jassertfalse;
return nullptr;
}

View file

@ -661,7 +661,7 @@ String MidiMessage::getTextFromTextMetaEvent() const
MidiMessage MidiMessage::textMetaEvent (int type, StringRef text)
{
jassert (type > 0 && type < 16)
jassert (type > 0 && type < 16);
MidiMessage result;

View file

@ -1330,7 +1330,7 @@ public:
}
else
{
jassertfalse // can't get a pointer to our effect
jassertfalse; // can't get a pointer to our effect
}
}

View file

@ -53,7 +53,7 @@ static void sanityCheckTagName (const String& tag)
(void) tag;
// the tag name mustn't be empty, or it'll look like a text element!
jassert (tag.containsNonWhitespaceChars())
jassert (tag.containsNonWhitespaceChars());
// The tag can't contain spaces or other characters that would create invalid XML!
jassert (! tag.containsAnyOf (" <>/&(){}"));

View file

@ -384,7 +384,7 @@ void LowLevelGraphicsPostScriptRenderer::fillPath (const Path& path, const Affin
{
// this doesn't work correctly yet - it could be improved to handle solid gradients, but
// postscript can't do semi-transparent ones.
notPossibleInPostscriptAssert // you can disable this warning by setting the WARN_ABOUT_NON_POSTSCRIPT_OPERATIONS flag at the top of this file
notPossibleInPostscriptAssert; // you can disable this warning by setting the WARN_ABOUT_NON_POSTSCRIPT_OPERATIONS flag at the top of this file
writeClip();
out << "gsave ";

View file

@ -217,7 +217,7 @@ void ComponentAnimator::animateComponent (Component* const component,
const double endSpeed)
{
// the speeds must be 0 or greater!
jassert (startSpeed >= 0 && endSpeed >= 0)
jassert (startSpeed >= 0 && endSpeed >= 0);
if (component != nullptr)
{

View file

@ -740,7 +740,7 @@ public:
void ensureItemIsVisible (const int itemID, int wantedY)
{
jassert (itemID != 0)
jassert (itemID != 0);
for (int i = items.size(); --i >= 0;)
{