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

Formatting: Use nested namespace definitions

This commit is contained in:
Anthony Nicholls 2023-10-06 08:59:50 +01:00
parent 90c458d92e
commit 158220ddfa
142 changed files with 394 additions and 796 deletions

View file

@ -23,10 +23,9 @@
==============================================================================
*/
namespace juce
{
namespace build_tools
namespace juce:: build_tools
{
uint64 calculateStreamHashCode (InputStream& in);
uint64 calculateFileHashCode (const File& file);
uint64 calculateMemoryHashCode (const void* data, size_t numBytes);
@ -34,5 +33,5 @@ namespace build_tools
bool overwriteFileWithNewDataIfDifferent (const File& file, const void* data, size_t numBytes);
bool overwriteFileWithNewDataIfDifferent (const File& file, const MemoryOutputStream& newData);
bool overwriteFileWithNewDataIfDifferent (const File& file, const String& newData);
}
}
} // namespace juce::build_tools