mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
hook: Fix compiler warning about overloaded virtual function
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
parent
43a9ab532a
commit
358a42e7e5
1 changed files with 2 additions and 2 deletions
|
@ -160,14 +160,14 @@ public:
|
|||
|
||||
virtual void setRate(double rate, double maxRate = -1) = 0;
|
||||
|
||||
virtual void parse() {
|
||||
virtual void parse(json_t *json) {
|
||||
assert(state == State::INITIALIZED);
|
||||
|
||||
state = State::PARSED;
|
||||
}
|
||||
|
||||
void init() {
|
||||
parse();
|
||||
parse(nullptr);
|
||||
check();
|
||||
prepare();
|
||||
start();
|
||||
|
|
Loading…
Add table
Reference in a new issue