Browse Source

Fix old macos build

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
260bb97671
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      source/backend/CarlaPluginPtr.hpp

+ 5
- 1
source/backend/CarlaPluginPtr.hpp View File

@@ -171,11 +171,15 @@ public:
}

// underlying pointer operations :
T& operator*() const noexcept
{
return *px;
}
T* operator->() const noexcept
{
return px;
}
T* get(void) const noexcept
T* get(void) const noexcept
{
return px;
}


Loading…
Cancel
Save