mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-09 02:42:19 +02:00
FIxing the mac build again ?
This commit is contained in:
parent
f72146c35d
commit
c1e00ca08c
2 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue