We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48423e1 commit e277289Copy full SHA for e277289
src/DataModelBase/Job.h
@@ -20,8 +20,8 @@ namespace ToolFramework{
20
public:
21
22
Job(std::string id); ///< constructor with string to pass identification information for retreival
23
- bool (*func)(void*); ///< function for worker thread to run
24
- void (*fail_func)(void*); ///< function for worker thread to run
+ bool (*func)(void*&); ///< function for worker thread to run
+ void (*fail_func)(void*&); ///< function for worker thread to run
25
void* data; ///< data packet for thread to retreive data
26
bool m_complete; ///< if the job is complete
27
bool m_in_progress; ///< if the job is in progress
0 commit comments