The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
310B

  1. /*!
  2. @file AudioUnitSDK/AUBufferAllocator.cpp
  3. @copyright © 2000-2021 Apple Inc. All rights reserved.
  4. */
  5. #include <AudioUnitSDK/AUBuffer.h>
  6. namespace ausdk {
  7. BufferAllocator& BufferAllocator::instance()
  8. {
  9. __attribute__ ((no_destroy)) static BufferAllocator global;
  10. return global;
  11. }
  12. } // namespace ausdk