Fixed typo.

This commit is contained in:
Matthew Parkinson
2019-02-19 15:44:23 +00:00
parent d588e8ecb1
commit 9940fbd363

View File

@@ -45,9 +45,9 @@ namespace snmalloc
inline bool is_empty()
{
T* fnt = back.load(std::memory_order_relaxed);
T* bk = back.load(std::memory_order_relaxed);
return fnt == front;
return bk == front;
}
void enqueue(T* first, T* last)