mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Windows: Fix DLL build
There were a few "ambiguous operator new/delete" errors that were due to inheriting from a private base class that used the leak detector. These errors are resolved by adding the leak detector to the derived classes. JUCE_API was missing from a few useful types, notably the ARA hosting types.
This commit is contained in:
parent
6f20de5434
commit
90f37e27ea
14 changed files with 28 additions and 17 deletions
|
|
@ -728,6 +728,8 @@ private:
|
|||
CriticalSection activeCollectorLock;
|
||||
ReferenceCountedArray<MidiInCollector> activeCollectors;
|
||||
Array<MidiOutHandle*> activeOutputHandles;
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (Win32MidiService)
|
||||
};
|
||||
|
||||
Array<Win32MidiService::MidiInCollector*, CriticalSection> Win32MidiService::MidiInCollector::activeMidiCollectors;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue