From 731608e5b04461f07d51e50861aaa94f7ef4add6 Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Fri, 27 Apr 2018 21:07:42 +0200 Subject: [PATCH] - removed inline qualifier from MemoryAllocator_getAlignedSize --- src/common/simple_allocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/simple_allocator.c b/src/common/simple_allocator.c index d9bcd223..e93398fc 100644 --- a/src/common/simple_allocator.c +++ b/src/common/simple_allocator.c @@ -33,7 +33,7 @@ MemoryAllocator_init(MemoryAllocator* self, char* memoryBlock, int size) self->size = size; } -int inline +int MemoryAllocator_getAlignedSize(int size) { #if (CONFIG_IEC61850_FORCE_MEMORY_ALIGNMENT == 1)