mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
MIDI: Fix compilation when JUCE_USE_WINRT_MIDI=1
This commit is contained in:
parent
22ee31f3ff
commit
b083d3c6d8
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ private:
|
|||
template <typename Ptr>
|
||||
auto createCheckedReference (Ptr* ptrIn)
|
||||
{
|
||||
return std::make_shared<CheckedReference<Ptr>> (ptrIn);
|
||||
return std::shared_ptr<CheckedReference<Ptr>> { new CheckedReference<Ptr> (ptrIn) };
|
||||
}
|
||||
|
||||
class MidiInput::Pimpl
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue