diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-10-29 09:21:41 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-10-29 09:41:23 +0100 |
commit | 33aa2b6bbbf6edbe2d0173a03a9869e7ed7a2660 (patch) | |
tree | 7deb1be34f9d7ecfca3bd22da6bf722ee19b5f4f /compat | |
parent | 29bf7f94eab413e25914c3939d7ff19ef0cd4c48 (diff) |
static constexpr -> constexpr
Diffstat (limited to 'compat')
-rw-r--r-- | compat/check-visible.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/check-visible.cpp b/compat/check-visible.cpp index d1d928fd..84ddd6d9 100644 --- a/compat/check-visible.cpp +++ b/compat/check-visible.cpp @@ -8,8 +8,8 @@ #include <windows.h> -static constexpr int visible_timeout = 5000; -static constexpr int invisible_timeout = 250; +constexpr int visible_timeout = 5000; +constexpr int invisible_timeout = 250; static Timer timer; static QMutex mtx; |