mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-15 16:41:54 -05:00
FIX: VisualProcessor compilation on Linux targets (#514), ThreadBlockingQueue version...
This commit is contained in:
parent
7d412eccb6
commit
65c1722bca
@ -12,8 +12,8 @@
|
||||
template<typename InputDataType = ReferenceCounter, typename OutputDataType = ReferenceCounter>
|
||||
class VisualProcessor {
|
||||
//
|
||||
typedef typename ThreadBlockingQueue<InputDataType*> VisualInputQueueType;
|
||||
typedef typename ThreadBlockingQueue<OutputDataType*> VisualOutputQueueType;
|
||||
typedef ThreadBlockingQueue<InputDataType*> VisualInputQueueType;
|
||||
typedef ThreadBlockingQueue<OutputDataType*> VisualOutputQueueType;
|
||||
typedef typename std::vector< VisualOutputQueueType *>::iterator outputs_i;
|
||||
public:
|
||||
virtual ~VisualProcessor() {
|
||||
|
Loading…
Reference in New Issue
Block a user