Issue811

Title pass AbstractTask by const reference if ownership is not shared
Priority feature Status resolved
Superseder Nosy List jendrik, malte
Assigned To Keywords
Optional summary

Created on 2018-08-17.17:22:34 by jendrik, last changed by jendrik.

Messages
msg10198 (view) Author: jendrik Date: 2021-03-18.14:37:44
I currently don't plan to pursue this, so I'm closing the issue.
msg7342 (view) Author: jendrik Date: 2018-08-17.17:22:34
Currently, we often pass around instances of "const shared_ptr<AbstractTask> &" 
even though the called code does not participate in the ownership of the task. In 
these situations, we should rather pass the task by const reference, i.e., "const 
AbstractTask &".
History
Date User Action Args
2021-03-18 14:37:45jendriksetstatus: unread -> resolved
messages: + msg10198
2018-08-17 17:22:34jendrikcreate