Skip to content

Commit

Permalink
Fix typedef inconsistency pt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Jul 4, 2024
1 parent 071e050 commit fa43635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/genesis/utils/threading/blocking_concurrent_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ namespace utils {
template <typename T, typename Traits = ConcurrentQueueDefaultTraits>
class BlockingConcurrentQueue {
private:
using ConcurrentQueue = ConcurrentQueue<T, Traits>;
typedef ::genesis::utils::ConcurrentQueue<T, Traits> ConcurrentQueue;

public:
typedef typename ConcurrentQueue::producer_token_t producer_token_t;
Expand Down

0 comments on commit fa43635

Please sign in to comment.