From 7ed39f4052babf88b0dc91117940ebef6deb1e82 Mon Sep 17 00:00:00 2001 From: samcake Date: Wed, 23 May 2018 16:16:57 -0700 Subject: [PATCH] Adjusting the syntax to have linux compiling maybe --- libraries/task/src/task/Task.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/task/src/task/Task.h b/libraries/task/src/task/Task.h index ec2ff6eb94..cde9950df9 100644 --- a/libraries/task/src/task/Task.h +++ b/libraries/task/src/task/Task.h @@ -141,8 +141,8 @@ public: const Varying getOutput() const override { return _output; } Varying& editInput() override { return _input; } - template void feedInput(const I& in) { _concept->editInput().template edit() = in; } - template void feedInput(int index, const S& inS) { (_concept->editInput().template editN(index)).template edit() = inS; } + template void feedInput(const In& in) { _concept->editInput().template edit() = in; } + template void feedInput(int index, const S& inS) { (_concept->editInput().template editN(index)).template edit() = inS; } template Model(const std::string& name, const Varying& input, QConfigPointer config, A&&... args) :