diff options
Diffstat (limited to 'backends/cloud/cloudthread.h')
-rw-r--r-- | backends/cloud/cloudthread.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/cloud/cloudthread.h b/backends/cloud/cloudthread.h index dcab42f6ae..ce448b7274 100644 --- a/backends/cloud/cloudthread.h +++ b/backends/cloud/cloudthread.h @@ -26,9 +26,10 @@ void cloudThread(void *thread); //this one is passed to TimerManager in main() class CloudThread { - bool firstTime; + bool _firstTime; public: - CloudThread(): firstTime(true) {}; + CloudThread(): _firstTime(true) {}; + void work(); }; |