Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jirol9xa committed Nov 25, 2024
1 parent 5bd2884 commit f967f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/thread_pool/thread_safe_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ namespace dp {
std::optional<T> front = data_.front();
data_.pop_front();

data_.push_back(front);
data_.push_back(*front);

return front;
}
Expand Down

0 comments on commit f967f18

Please sign in to comment.