aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.hpp')
-rw-r--r--src/app.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.hpp b/src/app.hpp
index da614a0..2995ca4 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -42,8 +42,8 @@ struct controller;
namespace wm {
struct id_allocator {
- constexpr static unsigned id_shift = 20;
- constexpr static unsigned id_mask = (1 << id_shift) - 1;
+ constexpr static const unsigned id_shift = 22;
+ constexpr static const unsigned id_mask = (1 << id_shift) - 1;
unsigned next = 1;