Unverified Commit e733cb27 authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Compiler warning (#3826)

parent 0b46f138
...@@ -125,7 +125,7 @@ pass::MemoryManager::MemoryManager(size_t alignment, bool disable_memory_reuse) ...@@ -125,7 +125,7 @@ pass::MemoryManager::MemoryManager(size_t alignment, bool disable_memory_reuse)
size_t pass::MemoryManager::allocate(size_t size) size_t pass::MemoryManager::allocate(size_t size)
{ {
size_t rc; size_t rc = 0;
switch (m_scheme) switch (m_scheme)
{ {
case allocation_scheme::FIRST_FIT: rc = first_fit(size); break; case allocation_scheme::FIRST_FIT: rc = first_fit(size); break;
......
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