This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Fix old macos build
Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX
4 years ago
parent
7f595594b4
commit
260bb97671
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
}
Write
Preview
Loading…
Cancel
Save