diff options
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: |
