1
0
Fork 0
mirror of https://github.com/gwm17/DaqGrimoire.git synced 2024-11-22 18:58:51 -05:00

Fix small bugs in both file and net

This commit is contained in:
Gordon McCann 2022-10-01 09:45:00 -04:00
parent 083abe66be
commit 044caba7eb
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ namespace DaqGrimoire {
return true;
}
const DYListEvent& GetCurrentEvent() const
const DYListData& GetCurrentEvent() const
{
return m_dataEvent;
}

View File

@ -48,7 +48,7 @@ namespace DaqGrimoire {
}
);
m_asioThread = std::thread([this]() { m_context.run() });
m_asioThread = std::thread([this]() { m_context.run(); });
}
catch (asio::system_error& e)
{