Make retry scheduler efficient (#3225)

This commit is contained in:
Otto Winter
2022-05-10 21:54:00 +02:00
committed by GitHub
parent e541ae400c
commit 235a97ea10
3 changed files with 43 additions and 49 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ extern const uint32_t STATUS_LED_OK;
extern const uint32_t STATUS_LED_WARNING;
extern const uint32_t STATUS_LED_ERROR;
enum RetryResult { DONE, RETRY };
enum class RetryResult { DONE, RETRY };
class Component {
public: