1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Cleaned up some obj-C autorelease code.

This commit is contained in:
Julian Storer 2011-04-16 22:09:19 +01:00
parent 6f0740d466
commit dd22093526
21 changed files with 83 additions and 91 deletions

View file

@ -40,7 +40,7 @@ static double hiResTicksScaleFactor;
//==============================================================================
#if JUCE_USE_INTRINSICS
#if JUCE_USE_INTRINSICS || JUCE_64BIT
// CPU info functions using intrinsics...
@ -69,9 +69,6 @@ static void juce_getCpuVendor (char* const v)
{
int vendor[4] = { 0 };
#if JUCE_64BIT
/// xxx todo
#else
#ifndef __MINGW32__
__try
#endif
@ -96,7 +93,6 @@ static void juce_getCpuVendor (char* const v)
*v = 0;
}
#endif
#endif
memcpy (v, vendor, 16);
}