Mercurial > hg > svapp
changeset 437:167fe01d5631 cxx11
More type fixes. We now build with -Wconversion, on this platform (64-bit Linux) at least.
author | Chris Cannam |
---|---|
date | Tue, 10 Mar 2015 17:23:45 +0000 |
parents | 72c662fe7ea3 |
children | 7fa74786dec5 |
files | framework/TransformUserConfigurator.cpp framework/TransformUserConfigurator.h |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/framework/TransformUserConfigurator.cpp Tue Mar 10 17:02:52 2015 +0000 +++ b/framework/TransformUserConfigurator.cpp Tue Mar 10 17:23:45 2015 +0000 @@ -62,8 +62,8 @@ Vamp::PluginBase *plugin, Model *&inputModel, AudioPlaySource *source, - int startFrame, - int duration, + sv_frame_t startFrame, + sv_frame_t duration, const QMap<QString, Model *> &modelMap, QStringList candidateModelNames, QString defaultModelName)
--- a/framework/TransformUserConfigurator.h Tue Mar 10 17:02:52 2015 +0000 +++ b/framework/TransformUserConfigurator.h Tue Mar 10 17:23:45 2015 +0000 @@ -27,8 +27,8 @@ Vamp::PluginBase *plugin, Model *&inputModel, AudioPlaySource *source, - int startFrame, - int duration, + sv_frame_t startFrame, + sv_frame_t duration, const QMap<QString, Model *> &modelMap, QStringList candidateModelNames, QString defaultModelName);