Browse Source

Fix typo

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

+ 2
- 2
source/backend/CarlaPluginPtr.hpp View File

@@ -123,7 +123,7 @@ public:
}

template <class U>
shared_ptr(const shared_ptr<U>& ptr) noexcept : (see comment below)
shared_ptr(const shared_ptr<U>& ptr) noexcept :
px(nullptr),
pn(ptr.pn)
{
@@ -131,7 +131,7 @@ public:
acquire(static_cast<typename shared_ptr<T>::element_type*>(ptr.px));
}

shared_ptr(const shared_ptr& ptr) noexcept : (see comment below)
shared_ptr(const shared_ptr& ptr) noexcept :
px(nullptr),
pn(ptr.pn)
{


Loading…
Cancel
Save