1
0
Fork 0
mirror of https://github.com/gwm17/DaqGrimoire.git synced 2024-11-26 12:18:52 -05:00

Forgot to make utility function inline, fixed

This commit is contained in:
Gordon McCann 2022-10-01 09:50:55 -04:00
parent 044caba7eb
commit dedd1e0e95

View File

@ -25,7 +25,7 @@ namespace DaqGrimoire {
namespace Utils
{
void GetDataEventFromBuffer(char* bufferIter, DYListData& dataEvent)
inline void GetDataEventFromBuffer(char* bufferIter, DYListData& dataEvent)
{
dataEvent.board = *((uint16_t*)bufferIter);
bufferIter += 2;