fix compile errors

This commit is contained in:
arthur.jamet
2021-06-17 20:50:43 +02:00
parent 1cf820bf87
commit 051096a194
43 changed files with 124 additions and 137 deletions
+3 -3
View File
@@ -13,10 +13,10 @@ namespace BBM
ringIn(delay)
{}
TimerComponent::TimerComponent(WAL::Entity &entity, std::chrono::nanoseconds delay, const WAL::Callback<WAL::Entity &, WAL::Wal &> &callback)
TimerComponent::TimerComponent(WAL::Entity &entity, std::chrono::nanoseconds delay, const WAL::Callback<WAL::Entity &, WAL::Wal &> &timerCallback)
: WAL::Component(entity),
ringIn(delay),
callback(callback)
callback(timerCallback),
ringIn(delay)
{}
WAL::Component *TimerComponent::clone(WAL::Entity &entity) const