mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-06-10 01:55:59 +00:00
Added mssing semicolon
This commit is contained in:
parent
1bd528c5cb
commit
6f64a06164
@ -26,7 +26,7 @@ namespace sta
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
void * RtosMemPool<T>::alloc(uint32_t timeout /* = osWaitForever */)
|
void * RtosMemPool<T>::alloc(uint32_t timeout /* = osWaitForever */)
|
||||||
{
|
{
|
||||||
void * addr = osMemoryPoolAlloc(handle_, timeout)
|
void * addr = osMemoryPoolAlloc(handle_, timeout);
|
||||||
STA_ASSERT_MSG(addr != nullptr, "Failed to Alloc RtosMemPool Block");
|
STA_ASSERT_MSG(addr != nullptr, "Failed to Alloc RtosMemPool Block");
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user