Fix InfiniTime compiler warnings

This commit is contained in:
Riku Isokoski
2022-06-14 09:48:00 +03:00
committed by Avamander
parent 95ff285991
commit 2b2aefcf6a
3 changed files with 8 additions and 15 deletions

View File

@@ -6,11 +6,11 @@
namespace Pinetime {
class BootloaderVersion {
public:
static const uint32_t Major();
static const uint32_t Minor();
static const uint32_t Patch();
static uint32_t Major();
static uint32_t Minor();
static uint32_t Patch();
static const char* VersionString();
static const bool IsValid();
static bool IsValid();
static void SetVersion(uint32_t v);
private: