resolved most warnings

This commit is contained in:
robert
2014-07-01 14:39:58 +02:00
parent e128263833
commit 61bacdfb9f
12 changed files with 78 additions and 79 deletions

View File

@@ -30,8 +30,8 @@ namespace core {
std::string ControllerCore::senderName = "Controller Core";
ControllerCore::ControllerCore(IWrapperConnector& wrapperConnector, std::map<Bank, int>& numberOfPayloads) :
config(Configuration::getInstance()), state(&config), wrapper(wrapperConnector), commandChecker(), numberOfPayloads(
numberOfPayloads), savedState(&config), commandSequenceGenerator(state), commandSequenceScheduler(*this)
config(Configuration::getInstance()), state(&config), wrapper(wrapperConnector), numberOfPayloads(
numberOfPayloads), commandChecker(), savedState(&config), commandSequenceGenerator(state), commandSequenceScheduler(*this)
{
commandChecker[Command::Activate] = new ActivateChecker(config, state);