mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-01 21:54:39 -04:00
FIX: VisualProcessor compilation on Linux targets (#514), suggested by @abousselmi, also works on MSVC
This commit is contained in:
@@ -12,8 +12,8 @@
|
||||
template<typename InputDataType = ReferenceCounter, typename OutputDataType = ReferenceCounter>
|
||||
class VisualProcessor {
|
||||
//
|
||||
typedef typename ThreadQueue<InputDataType*> VisualInputQueueType;
|
||||
typedef typename ThreadQueue<OutputDataType*> VisualOutputQueueType;
|
||||
typedef ThreadQueue<InputDataType*> VisualInputQueueType;
|
||||
typedef ThreadQueue<OutputDataType*> VisualOutputQueueType;
|
||||
typedef typename std::vector< VisualOutputQueueType *>::iterator outputs_i;
|
||||
public:
|
||||
virtual ~VisualProcessor() {
|
||||
|
||||
Reference in New Issue
Block a user