summaryrefslogtreecommitdiffstats
path: root/src/engine/DuplexPort.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/DuplexPort.cpp')
-rw-r--r--src/engine/DuplexPort.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/engine/DuplexPort.cpp b/src/engine/DuplexPort.cpp
index 315583f0..3cae06d1 100644
--- a/src/engine/DuplexPort.cpp
+++ b/src/engine/DuplexPort.cpp
@@ -35,7 +35,6 @@ namespace Ingen {
using namespace Shared;
-
DuplexPort::DuplexPort(
BufferFactory& bufs,
NodeImpl* parent,
@@ -56,7 +55,6 @@ DuplexPort::DuplexPort(
set_property(bufs.uris().ingen_polyphonic, polyphonic);
}
-
bool
DuplexPort::get_buffers(BufferFactory& bufs, Raul::Array<BufferFactory::Ref>* buffers, uint32_t poly)
{
@@ -66,7 +64,6 @@ DuplexPort::get_buffers(BufferFactory& bufs, Raul::Array<BufferFactory::Ref>* bu
return OutputPort::get_buffers(bufs, buffers, poly);
}
-
/** Prepare for the execution of parent patch */
void
DuplexPort::pre_process(Context& context)
@@ -84,7 +81,6 @@ DuplexPort::pre_process(Context& context)
}
}
-
/** Finalize after the execution of parent patch (deliver outputs) */
void
DuplexPort::post_process(Context& context)
@@ -99,6 +95,5 @@ DuplexPort::post_process(Context& context)
}
}
-
} // namespace Ingen