mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-23 04:08:36 -05:00
FIX: VisualProcessor compilation on Linux targets (#514), suggested by @abousselmi, also works on MSVC
This commit is contained in:
parent
977ffa3e3d
commit
c0dafb3197
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user