implbase: fix wreorder

This fixes all reorder warnings... uh...
This commit is contained in:
Honkazel 2025-02-03 14:40:20 +05:00 committed by GitHub
parent ecd20db0e1
commit 373b967c2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ namespace Hyprutils {
template <typename T>
class impl : public impl_base {
public:
impl(T* data, bool lock = true) noexcept : _data(data), _lockable(lock) {
impl(T* data, bool lock = true) noexcept : _lockable(lock), _data(data) {
;
}
@ -116,4 +116,4 @@ namespace Hyprutils {
}
}
}
}