API progress

This commit is contained in:
Andrey 2024-09-18 00:45:21 -04:00
parent 8a8db54f8a
commit 716636f0b6
1 changed files with 1 additions and 3 deletions

View File

@ -9,11 +9,9 @@
template <typename TInput, typename TOutput>
class ClosedLoopController {
public:
expected<TOutput> update() {
void update() {
expected<TOutput> outputValue = getOutput();
setOutput(outputValue);
return outputValue;
}
private: