summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/TypedPort.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/TypedPort.h')
-rw-r--r--src/libs/engine/TypedPort.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/TypedPort.h b/src/libs/engine/TypedPort.h
index eebbc97b..ef667d28 100644
--- a/src/libs/engine/TypedPort.h
+++ b/src/libs/engine/TypedPort.h
@@ -49,7 +49,7 @@ public:
Buffer<T>* buffer(size_t voice) const { return m_buffers.at(voice); }
- virtual void process(samplecount nframes);
+ virtual void process(SampleCount nframes);
virtual void clear_buffers();
/** Used by drivers to prevent port from changing buffers */
@@ -71,7 +71,7 @@ protected:
};
-template class TypedPort<sample>;
+template class TypedPort<Sample>;
template class TypedPort<MidiMessage>;
} // namespace Om