1
0
Fork 0
mirror of https://github.com/gwm17/DaqGrimoire.git synced 2024-11-23 03:08:52 -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; return true;
} }
const DYListEvent& GetCurrentEvent() const const DYListData& GetCurrentEvent() const
{ {
return m_dataEvent; 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) catch (asio::system_error& e)
{ {