diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2022-06-14 09:48:00 +0300 |
|---|---|---|
| committer | Avamander <avamander@gmail.com> | 2022-06-19 13:41:33 +0300 |
| commit | 2b2aefcf6a3b187c432e90d4b4e951cb10e293ef (patch) | |
| tree | 7e76a8cc9187c6cbabbd2b792babc89ff885ce6f /src/BootloaderVersion.h | |
| parent | 95ff285991d399498d9bd7f60a503ef7665822ce (diff) | |
Fix InfiniTime compiler warnings
Diffstat (limited to 'src/BootloaderVersion.h')
| -rw-r--r-- | src/BootloaderVersion.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/BootloaderVersion.h b/src/BootloaderVersion.h index 7ed90fa9..85d5e0ec 100644 --- a/src/BootloaderVersion.h +++ b/src/BootloaderVersion.h @@ -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: |
