From 4c9cfb685ab60ca5109c1a5ce4af65cf382652a1 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Mon, 25 Mar 2024 08:17:22 -0400 Subject: [PATCH] change MAX_LEV to constexpr --- Source/driver/castro_limits.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/driver/castro_limits.H b/Source/driver/castro_limits.H index 0111b43432..31ddeb93a9 100644 --- a/Source/driver/castro_limits.H +++ b/Source/driver/castro_limits.H @@ -1,6 +1,6 @@ #ifndef CASTRO_LIMITS_H #define CASTRO_LIMITS_H -#define MAX_LEV 15 +constexpr int MAX_LEV{15}; #endif