Fixes #581 ?: Do not set std::shared_ptr to nullptr in constructors (useless anyway) since they could be wrongly interpreted

This commit is contained in:
vsonnier
2017-10-16 18:44:20 +02:00
parent 6019207bd4
commit 3cc49bdb15
3 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ protected:
}
//the incoming data queue
VisualInputQueueTypePtr input = nullptr;
VisualInputQueueTypePtr input;
//the n-outputs where to process()-ed data is distribute()-ed.
std::vector<VisualOutputQueueTypePtr> outputs;