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
Add some missing 'override' keywords
tags/1.9.7
falkTX
9 years ago
parent
6ca77fe2de
commit
1e45e83693
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
source/backend/engine/CarlaEngineGraph.cpp
+1
-1
source/backend/plugin/CarlaPluginBridge.cpp
+1
-1
source/backend/plugin/CarlaPluginDSSI.cpp
+ 1
- 1
source/backend/engine/CarlaEngineGraph.cpp
View File
@@ -1193,7 +1193,7 @@ public:
return fPlugin->getName();
}
void processBlock(AudioSampleBuffer& audio, MidiBuffer& midi)
void processBlock(AudioSampleBuffer& audio, MidiBuffer& midi)
override
{
if (fPlugin == nullptr || ! fPlugin->isEnabled())
{
+ 1
- 1
source/backend/plugin/CarlaPluginBridge.cpp
View File
@@ -802,7 +802,7 @@ public:
// -------------------------------------------------------------------
// Information (base)
BinaryType getBinaryType() const noexcept
BinaryType getBinaryType() const noexcept
override
{
return fBinaryType;
}
+ 1
- 1
source/backend/plugin/CarlaPluginDSSI.cpp
View File
@@ -522,7 +522,7 @@ public:
// -------------------------------------------------------------------
// Set data (internal stuff)
void setId(const uint newId) noexcept
void setId(const uint newId) noexcept
override
{
CarlaPlugin::setId(newId);
Write
Preview
Loading…
Cancel
Save