Skip to content
Snippets Groups Projects
Unverified Commit 5cbd0898 authored by Leon Dietrich's avatar Leon Dietrich
Browse files

fix: missing semicolon

parent 04bf753d
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -35,6 +35,6 @@ public:
* description of the current step.
*/
virtual shared_ptr<string> get_current_job_description();
}
};
}
......@@ -40,9 +40,9 @@ public:
/**
* This abstract class implements a view page.
*/
virtual class view {
class view {
public:
void set_progress_indicator(std::shared_ptr<progress_indicator>);
}
virtual void set_progress_indicator(std::shared_ptr<progress_indicator>);
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment