8 lines
261 B
C++
8 lines
261 B
C++
// pool.cpp — ThreadPool & LockFreeQueue implementation file
|
|
//
|
|
// Note: All template implementations are in pool.hpp (header-only).
|
|
// This file exists for future non-template extensions or
|
|
// explicit template instantiations if needed.
|
|
|
|
#include "pool.hpp"
|