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

Stopped using the old BEGIN_JUCE_NAMESPACE macros, and just used hard-coded namespaces where necessary instead. The macro definitions are still there, so this shouldn't affect anyone's code.

This commit is contained in:
jules 2012-02-11 14:09:23 +00:00
parent b8397a9888
commit 295d125142
318 changed files with 271 additions and 1363 deletions

View file

@ -23,10 +23,7 @@
==============================================================================
*/
BEGIN_JUCE_NAMESPACE
//==============================================================================
class MD5Generator
{
public:
@ -302,5 +299,3 @@ String MD5::toHexString() const
//==============================================================================
bool MD5::operator== (const MD5& other) const noexcept { return memcmp (result, other.result, sizeof (result)) == 0; }
bool MD5::operator!= (const MD5& other) const noexcept { return ! operator== (other); }
END_JUCE_NAMESPACE

View file

@ -23,9 +23,7 @@
==============================================================================
*/
BEGIN_JUCE_NAMESPACE
//==============================================================================
class SHA256Processor
{
public:
@ -267,5 +265,3 @@ public:
static SHA256Tests sha256UnitTests;
#endif
END_JUCE_NAMESPACE