diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-05-16 11:19:15 (GMT) |
---|---|---|
committer | Mathias Gumz <mgumz@users.noreply.github.com> | 2024-06-09 08:00:46 (GMT) |
commit | 06993a4ac8261f1ea6876d7593b14cf43103214b (patch) | |
tree | 87f0aa88110e9b16f3420c9cadb9f841eb4cb91b | |
parent | 0f95d62b1b1add8ee7327305db7d372010fdb2f4 (diff) | |
download | fluxbox-06993a4ac8261f1ea6876d7593b14cf43103214b.zip fluxbox-06993a4ac8261f1ea6876d7593b14cf43103214b.tar.bz2 |
Register keyword has been deprecated since c++14 and completely removed
since c++17.
Encountered while building fluxbox with clang-16.
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | util/fbsetroot.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/fbsetroot.cc b/util/fbsetroot.cc index 0859960..a9ac2a5 100644 --- a/util/fbsetroot.cc +++ b/util/fbsetroot.cc | |||
@@ -219,7 +219,7 @@ void fbsetroot::modula(int x, int y) { | |||
219 | char data[32]; | 219 | char data[32]; |
220 | long pattern = 0; | 220 | long pattern = 0; |
221 | 221 | ||
222 | register int i; | 222 | int i; |
223 | 223 | ||
224 | FbRootWindow root(screen); | 224 | FbRootWindow root(screen); |
225 | 225 | ||