add missing public keyword
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2022-10-13 15:13:19 +02:00
parent db7f7bdae2
commit 18e8827a84
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -23,7 +23,7 @@
enum DeploymentChannels : uint8_t { SA_1 = 1, SA_2 = 2 }; enum DeploymentChannels : uint8_t { SA_1 = 1, SA_2 = 2 };
class ManualDeploymentCommand : SerialLinkedListAdapter<SerializeIF> { class ManualDeploymentCommand : public SerialLinkedListAdapter<SerializeIF> {
public: public:
ManualDeploymentCommand() = default; ManualDeploymentCommand() = default;