[core] Default PollingComponent() to 1ms when codegen is bypassed (#15831)

This commit is contained in:
J. Nick Koston
2026-04-20 10:20:56 +12:00
committed by Jesse Hills
parent 78701debec
commit 602305b20d
+1 -1
View File
@@ -593,7 +593,7 @@ class Component {
*/
class PollingComponent : public Component {
public:
PollingComponent() : PollingComponent(0) {}
PollingComponent() : PollingComponent(1) {}
/** Initialize this polling component with the given update interval in ms.
*