1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

Formatting

This commit is contained in:
Tom Poole 2023-09-29 16:41:53 +01:00
parent ff0cb4ad5b
commit 4153d59e39
279 changed files with 1281 additions and 1281 deletions

View file

@ -229,7 +229,7 @@ namespace
command.add ("-m");
command.add (version.quoted());
std::cout << "Performing command: " << command.joinIntoString(" ") << std::endl;
std::cout << "Performing command: " << command.joinIntoString (" ") << std::endl;
ChildProcess c;
@ -525,7 +525,7 @@ namespace
auto files = findAllSourceFiles (target);
for (int i = 0; i < files.size(); ++i)
fixIncludes (files.getReference(i), files);
fixIncludes (files.getReference (i), files);
}
//==============================================================================
@ -586,7 +586,7 @@ namespace
}
for (int i = 0; i < sections.size(); ++i)
sections.getReference(i).index = i;
sections.getReference (i).index = i;
for (int i = 0; i < sections.size(); ++i)
sections.swap (i, rng.nextInt (sections.size()));
@ -597,7 +597,7 @@ namespace
<< "{" << preferredLineFeed;
for (int i = 0; i < sections.size(); ++i)
sections.getReference(i).writeGenerator (out);
sections.getReference (i).writeGenerator (out);
out << preferredLineFeed
<< " String result = " << getStringConcatenationExpression (rng, 0, sections.size()) << ";" << preferredLineFeed