FIxing the mac build again ?

This commit is contained in:
samcake 2015-10-29 14:30:51 -07:00
parent f72146c35d
commit c1e00ca08c
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ void StateController::update(float deltaTime, bool jointsCaptured) {}
void StateController::focusOutEvent() {}
void StateController::addInputVariant(QString name, ReadLambda& lambda) {
void StateController::addInputVariant(QString name, ReadLambda lambda) {
_namedReadLambdas.push_back(NamedReadLambda(name, lambda));
}

View file

@ -37,7 +37,7 @@ public:
using ReadLambda = std::function<float()>;
using NamedReadLambda = QPair<QString, ReadLambda>;
void addInputVariant(QString name, ReadLambda& lambda);
void addInputVariant(QString name, ReadLambda lambda);
virtual EndpointPointer createEndpoint(const Input& input) const override;