Declare variables as size_t rather than unsigned.

Modify `unsigned front, front1, back;` to `size_t front, front1, back;`
This commit is contained in:
Subenlele 2017-11-05 20:59:37 -06:00 committed by GitHub
parent f70b2ef3b8
commit 34a9f24dba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 165 additions and 165 deletions

View File

@ -129,7 +129,7 @@ namespace spdlog
bool is_empty()
{
unsigned front, front1, back;
size_t front, front1, back;
// try to take a consistent snapshot of front/tail.
do {
front = enqueue_pos_.load(std::memory_order_acquire);