Commit c334e3c1 authored by pruthvi's avatar pruthvi

fix clang error

parent 0f441318
......@@ -33,8 +33,8 @@ runtime::AlignedBuffer::AlignedBuffer()
}
runtime::AlignedBuffer::AlignedBuffer(size_t byte_size, size_t alignment, Allocator* allocator)
: m_byte_size(byte_size)
, m_allocator(allocator)
: m_allocator(allocator)
, m_byte_size(byte_size)
{
if (m_byte_size > 0)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment