Skip to content

Commit 964f065

Browse files
Riksu9000JF002
authored andcommitted
Fix clang-tidy warnings
1 parent 318a97c commit 964f065

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/displayapp/DisplayApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ using namespace Pinetime::Applications;
5555
using namespace Pinetime::Applications::Display;
5656

5757
namespace {
58-
static inline bool in_isr(void) {
58+
inline bool in_isr() {
5959
return (SCB->ICSR & SCB_ICSR_VECTACTIVE_Msk) != 0;
6060
}
6161
}

src/systemtask/SystemTask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
using namespace Pinetime::System;
2323

2424
namespace {
25-
static inline bool in_isr(void) {
25+
inline bool in_isr() {
2626
return (SCB->ICSR & SCB_ICSR_VECTACTIVE_Msk) != 0;
2727
}
2828
}

0 commit comments

Comments
 (0)