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

Juceaide: Fix warning about missing returns

This commit is contained in:
reuk 2024-02-26 16:06:28 +00:00
parent f491f126b7
commit bb0ca20167
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -594,5 +594,9 @@ int main (int argc, char** argv)
{
juce::ConsoleApplication::fail ("Unhandled exception");
}
return 1;
});
return 0;
}