mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
Converted the BitArray class into "BigInteger", replacing its clunky old arithmetic methods with a proper set of arithmetic operators so it can be used like an int. All the bit-access methods are still there, and there's a typedef of BitArray -> BigInteger to allow most old code to still work. (You might need to change calls to isEmpty() to isZero() though). Also fixed a bug in MidiBuffer.
This commit is contained in:
parent
669ed3feed
commit
8b8316038b
38 changed files with 1979 additions and 1957 deletions
|
|
@ -56,7 +56,7 @@ void AudioPluginFormatManager::addDefaultFormats()
|
|||
// you should only call this method once!
|
||||
for (int i = formats.size(); --i >= 0;)
|
||||
{
|
||||
#if JUCE_PLUGINHOST_VST
|
||||
#if JUCE_PLUGINHOST_VST && ! (JUCE_MAC && JUCE_64BIT)
|
||||
jassert (dynamic_cast <VSTPluginFormat*> (formats[i]) == 0);
|
||||
#endif
|
||||
|
||||
|
|
@ -78,7 +78,7 @@ void AudioPluginFormatManager::addDefaultFormats()
|
|||
formats.add (new AudioUnitPluginFormat());
|
||||
#endif
|
||||
|
||||
#if JUCE_PLUGINHOST_VST
|
||||
#if JUCE_PLUGINHOST_VST && ! (JUCE_MAC && JUCE_64BIT)
|
||||
formats.add (new VSTPluginFormat());
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue