Skip to content

Commit

Permalink
fix constexpr position
Browse files Browse the repository at this point in the history
Co-authored-by: mark9064 <[email protected]>
  • Loading branch information
minacode and mark9064 authored Dec 9, 2024
1 parent 1cb1a8b commit a3320b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/displayapp/screens/Calculator.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "Symbols.h"

namespace {
int64_t constexpr powi(int64_t base, uint8_t exponent) {
constexpr int64_t powi(int64_t base, uint8_t exponent) {
int64_t value = 1;
while (exponent) {
value *= base;
Expand Down

0 comments on commit a3320b1

Please sign in to comment.